mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
quick fix
This commit is contained in:
parent
f9f79ffbaf
commit
b4685aa77c
1 changed files with 3 additions and 1 deletions
|
|
@ -104,7 +104,9 @@ class Fingerprint(GenericFingerprint):
|
||||||
result = True
|
result = True
|
||||||
else:
|
else:
|
||||||
randInt = randomInt()
|
randInt = randomInt()
|
||||||
payload = agent.fullPayload(" AND BINARY_CHECKSUM(%d)=BINARY_CHECKSUM(%d))" % (randInt, randInt))
|
payload = agent.fullPayload(" AND BINARY_CHECKSUM(%d)=BINARY_CHECKSUM(%d)" % (randInt, randInt))
|
||||||
|
import pdb
|
||||||
|
pdb.set_trace()
|
||||||
result = Request.queryPage(payload)
|
result = Request.queryPage(payload)
|
||||||
|
|
||||||
if result:
|
if result:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue