mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-09 18:02:56 +01:00
minor patch
This commit is contained in:
parent
e419177871
commit
fdf61015ad
1 changed files with 3 additions and 3 deletions
|
|
@ -337,11 +337,11 @@ def __goBooleanProxy(expression):
|
|||
|
||||
output = hashDBRetrieve(expression)
|
||||
|
||||
if not output:
|
||||
if output is None:
|
||||
output = Request.queryPage(payload, timeBasedCompare=timeBasedCompare, raise404=False)
|
||||
|
||||
if output is not None:
|
||||
hashDBWrite(expression, output)
|
||||
if output is not None:
|
||||
hashDBWrite(expression, output)
|
||||
|
||||
return output
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue