mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Major bug fix to comparison algorithm with OR based boolean-based injections
This commit is contained in:
parent
d66056fe39
commit
a1c943fc79
|
@ -56,7 +56,7 @@ def comparison(page, headers, code=None, getRatioValue=False, pageLength=None):
|
|||
|
||||
if page:
|
||||
# In case of an DBMS error page return None
|
||||
if kb.errorIsNone and (wasLastRequestDBMSError() or wasLastRequestHTTPError()):
|
||||
if not kb.negativeLogic and kb.errorIsNone and (wasLastRequestDBMSError() or wasLastRequestHTTPError()):
|
||||
return None
|
||||
|
||||
# Dynamic content lines to be excluded before comparison
|
||||
|
|
Loading…
Reference in New Issue
Block a user