mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 08:52:20 +01:00
Minor refactoring
This commit is contained in:
parent
a927d94d39
commit
6210ddfbd6
1 changed files with 1 additions and 1 deletions
|
|
@ -638,7 +638,7 @@ def heuristicCheckSqlInjection(place, parameter):
|
|||
|
||||
if _ and _.isdigit():
|
||||
randInt = int(randomInt())
|
||||
payload = "%s%s%s" % (prefix, "%s-%s" % (int(_) + randInt, randInt), suffix)
|
||||
payload = "%s%s%s" % (prefix, "%d-%d" % (int(_) + randInt, randInt), suffix)
|
||||
payload = agent.payload(place, parameter, newValue=payload, where=PAYLOAD.WHERE.REPLACE)
|
||||
result = Request.queryPage(payload, place, raise404=False)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue