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
Difference between revisions of "AppSensor DetectionPoint RE4"
From OWASP
John Melton (talk | contribs) (Sample code for testing for POST when expecting GET attack) |
(No difference)
|
Revision as of 12:38, 6 April 2010
Here is some sample code that can be used to detect RE4.
//the execution of this line will throw an exception if an attack is found boolean isAttack = AttackDetectorUtils.verifyRequestMethod(myServletRequest, AttackDetectorUtils.GET); if (isAttack) { notify user ... ??? }