mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
trust me, i know what i am doing :)
This commit is contained in:
parent
73e85bfc75
commit
620fa1c8fb
2 changed files with 8 additions and 6 deletions
|
|
@ -20,6 +20,10 @@ def comparison(page, headers=None, getSeqMatcher=False, pageLength=None):
|
|||
if page is None and pageLength is None:
|
||||
return None
|
||||
|
||||
# In case of an DBMS error page return None
|
||||
if wasLastRequestError():
|
||||
return None
|
||||
|
||||
regExpResults = None
|
||||
|
||||
if page:
|
||||
|
|
@ -105,10 +109,6 @@ def comparison(page, headers=None, getSeqMatcher=False, pageLength=None):
|
|||
if getSeqMatcher:
|
||||
return ratio
|
||||
|
||||
# In case of an DBMS error page return None
|
||||
elif wasLastRequestError():
|
||||
return None
|
||||
|
||||
elif ratio == 1:
|
||||
return True
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue