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 CIE1

From OWASP
Revision as of 12:31, 6 April 2010 by John Melton (talk | contribs) (Added sample code for detecting SQL Injection)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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

String myInputParameter = ...;

//the execution of this line will throw an exception if an attack is found 
boolean isAttack = AttackDetectorUtils.verifySQLInjectionAttack(myInputParameter); 
if (isAttack) {
    notify user ... ???
}