2019-11-24 21:12:10 +05:30
{
"wildcard value" : {
2020-01-17 02:44:46 +05:30
"class" : "wildcard value" ,
"description" : "This host allows requests made from any origin. However, browsers will block all requests to this host by default." ,
"severity" : "low" ,
"exploitation" : "Not possible"
2019-11-24 21:12:10 +05:30
} ,
"third party allowed" : {
2020-01-17 02:44:46 +05:30
"class" : "third party allowed" ,
"description" : "This host has whitelisted a third party host for cross origin requests." ,
"severity" : "Medium" ,
"exploitation" : "If the whitelisted host is a code hosting platform such as codepen.io or has an XSS vulnerability, it can be used to exploit this misconfiguration."
2019-11-24 21:12:10 +05:30
} ,
2020-01-17 02:44:46 +05:30
"origin reflected" : {
"class" : "origin reflected" ,
"description" : "This host allows any origin to make requests to it." ,
"severity" : "high" ,
"exploitation" : "Make requests from any domain you control."
2019-11-24 21:12:10 +05:30
} ,
"invalid value" : {
2020-01-17 02:44:46 +05:30
"class" : "invalid value" ,
"description" : "Header's value is invalid, this CORS implementation doesn't work at all." ,
"severity" : "low" ,
"exploitation" : "Not possible"
2019-11-24 21:12:10 +05:30
} ,
2019-11-24 21:41:20 +05:30
"post-domain wildcard" : {
2020-01-17 02:44:46 +05:30
"class" : "post-domain wildcard" ,
"description" : "The origin verification is flawed, it allows requests from a host that has this host as a prefix." ,
"severity" : "high" ,
"exploitation" : "Make requests from target.com.attacker.com"
2019-11-24 21:12:10 +05:30
} ,
2019-11-24 21:41:20 +05:30
"pre-domain wildcard" : {
2020-01-17 02:44:46 +05:30
"class" : "pre-domain wildcard" ,
"description" : "The origin verification is flawed, it allows requests from a host that has this host as a suffix." ,
"severity" : "high" ,
"exploitation" : "Make requests from attacker-target.com"
2019-11-24 21:12:10 +05:30
} ,
"null origin allowed" : {
2020-01-17 02:44:46 +05:30
"class" : "null origin allowed" ,
"description" : "This host allows requests from 'null' origin." ,
"severity" : "high" ,
"exploitation" : "Make requests from a sandboxed iframe."
2019-11-24 21:12:10 +05:30
} ,
"http origin allowed" : {
2020-01-17 02:44:46 +05:30
"class" : "http origin allowed" ,
"description" : "This host allows sharing resources over an unencrypted (HTTP) connection." ,
"severity" : "low" ,
"exploitation" : "Sniff requests made over the unencrypted channel."
2019-11-24 21:12:10 +05:30
} ,
2021-01-28 16:21:42 +05:30
"unrecognized underscore" : {
"class" : "unrecognized underscore" ,
"description" : "The origin verification is flawed and can be bypassed using a underscore (_)." ,
"severity" : "high" ,
"exploitation" : "Set the 'Origin' header to target.com_.example.com"
} ,
2019-11-24 21:12:10 +05:30
"broken parser" : {
2020-01-17 02:44:46 +05:30
"class" : "broken parser" ,
"description" : "The origin verification is flawed and can be bypassed using a backtick (`)." ,
"severity" : "high" ,
"exploitation" : "Set the 'Origin' header to %60.example.com"
2019-11-25 10:20:45 +05:30
} ,
"unescaped regex" : {
2020-01-17 02:44:46 +05:30
"class" : "unescaped regex" ,
"description" : "The regex used for origin verification contains an unescaped dot (.) character." ,
"severity" : "high" ,
"exploitation" : "If the target is sub.example.com, make requests from subxexample.com"
2019-11-24 21:12:10 +05:30
}
2019-11-24 21:41:20 +05:30
}