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 RE3"

From OWASP
Jump to: navigation, search
(Sample code for testing for GET when expecting POST attack)
 
m (wording)
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
 
<pre>
 
<pre>
  
//the execution of this line will throw an exception if an attack is found  
+
//the execution of this line will create an exception if an attack is found  
boolean isAttack = AttackDetectorUtils.verifyRequestMethod(myServletRequest, AttackDetectorUtils.POST);  
+
boolean isValid = AttackDetectorUtils.verifyValidRequestMethod(myServletRequest, AttackDetectorUtils.POST);  
if (isAttack) {
+
if (! isValid) {
 
     notify user ...&nbsp;???
 
     notify user ...&nbsp;???
 
}
 
}
 
</pre>
 
</pre>

Latest revision as of 14:28, 1 June 2010

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


//the execution of this line will create an exception if an attack is found 
boolean isValid = AttackDetectorUtils.verifyValidRequestMethod(myServletRequest, AttackDetectorUtils.POST); 
if (! isValid) {
    notify user ... ???
}