File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -1367,11 +1367,10 @@ def checkWaf():
1367
1367
retVal = False
1368
1368
payload = "%d %s" % (randomInt (), IPS_WAF_CHECK_PAYLOAD )
1369
1369
1370
+ place = PLACE .GET
1370
1371
if PLACE .URI in conf .parameters :
1371
- place = PLACE .POST
1372
1372
value = "%s=%s" % (randomStr (), agent .addPayloadDelimiters (payload ))
1373
1373
else :
1374
- place = PLACE .GET
1375
1374
value = "" if not conf .parameters .get (PLACE .GET ) else conf .parameters [PLACE .GET ] + DEFAULT_GET_POST_DELIMITER
1376
1375
value += "%s=%s" % (randomStr (), agent .addPayloadDelimiters (payload ))
1377
1376
Original file line number Diff line number Diff line change 20
20
from thirdparty .six import unichr as _unichr
21
21
22
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
- VERSION = "1.6.6.2 "
23
+ VERSION = "1.6.6.3 "
24
24
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
25
25
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
26
26
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
You can’t perform that action at this time.
0 commit comments