mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
ms access returns -1 for True
This commit is contained in:
parent
ae3455a0c2
commit
bfc12e93c5
1 changed files with 1 additions and 1 deletions
|
|
@ -294,7 +294,7 @@ class Connect:
|
|||
return values, None
|
||||
else:
|
||||
for value in values:
|
||||
if value[0] == 1:
|
||||
if value[0] in (1, -1):
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
|
|
|
|||
Loading…
Reference in a new issue