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
(updated method name)
m (wording)
 
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 isValid = AttackDetectorUtils.verifyValidRequestMethod(myServletRequest, AttackDetectorUtils.POST);  
 
boolean isValid = AttackDetectorUtils.verifyValidRequestMethod(myServletRequest, AttackDetectorUtils.POST);  
 
if (! isValid) {
 
if (! isValid) {

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 ... ???
}