NoSQL Injection
Syntax injection
https://$URL/$query?$param=section
# First, we can confirm which parameters are processed or cause errors
https://$URL/$query?$param='
https://$URL/$query?$param=\' #The above causes an error, but this doesn't
# Then we can use the fuzz string '"`{ ;$Foo} $Foo \xYZ in a URL encoded format
https://$URL/$query?$param=%27%22%60%7b%0d%0a%3b%24Foo%7d%0d%0a%24Foo%20%5cxYZ%00
# This can also be applied to a JSON format
{
"param": "'\"`{\r;$Foo}\n$Foo \\xYZ\u0000"
}Operator injection
Time-Based Injection
Remediation Actions
Last updated