This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

AppSensor DetectionPoint RE2

From OWASP
Jump to: navigation, search

Here is some sample code that can be used to detect RE2.


//the execution of this line will create an exception if an attack is found - ie. invalid text is the request method (not valid for HTTP 1.1 request method)
boolean isValid = AttackDetectorUtils.verifyValidRequestMethod(myServletRequest, AttackDetectorUtils.POST); 
if (! isValid) {
    notify user ... ???
}