Displays SSL certificate errors and malicious site warnings.
initialSetup"SpecialError Messages".InitialSetupRequest
Configure initial special error page settings.
Types:
Example for a phishing warning:
{
"locale": "en",
"env": "production",
"platform": {
"name": "macos"
},
"errorData": {
"kind": "phishing",
"url": "https://malicious-example.com"
},
"theme": "light",
"themeVariant": "default"
}
Example for a malware warning:
{
"locale": "en",
"env": "production",
"platform": {
"name": "windows"
},
"errorData": {
"kind": "malware",
"url": "https://malware-example.com"
},
"theme": "dark",
"themeVariant": "default"
}
Example for an SSL expired certificate error:
{
"locale": "en",
"env": "production",
"platform": {
"name": "macos"
},
"errorData": {
"kind": "ssl",
"errorType": "expired",
"domain": "expired.badssl.com"
},
"theme": "light",
"themeVariant": "default"
}
Example for an SSL wrong host error:
{
"locale": "en",
"env": "production",
"platform": {
"name": "macos"
},
"errorData": {
"kind": "ssl",
"errorType": "wrongHost",
"domain": "wrong.host.badssl.com",
"eTldPlus1": "badssl.com"
},
"theme": "light",
"themeVariant": "default"
}
Malicious Site (kind: phishing | malware | scam):
kind: Type of malicious siteurl: The URL of the malicious siteSSL Errors (kind: ssl):
errorType: One of expired, invalid, selfSigned, wrongHostdomain: The domain with the certificate issueeTldPlus1: (Only for wrongHost) The eTLD+1 of the expected domainAvailable theme variants: default, coolGray, slateBlue, green, violet, rose, orange, desert
onThemeUpdate{
"theme": "dark",
"themeVariant": "default"
}
{
"theme": "light",
"themeVariant": "violet"
}
default, coolGray, slateBlue, green, violet, rose, orange, desertleaveSitevisitSiteadvancedInforeportInitException{
"message": "Failed to initialize special error page"
}
reportPageException{
"message": "Failed to render error details"
}