mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Fixes #4671
This commit is contained in:
parent
94ab17829e
commit
3c25f79a9b
2 changed files with 4 additions and 2 deletions
|
|
@ -13,6 +13,7 @@ from lib.core.common import extractRegexResult
|
|||
from lib.core.common import getFilteredPageContent
|
||||
from lib.core.common import listToStrValue
|
||||
from lib.core.common import removeDynamicContent
|
||||
from lib.core.common import getLastRequestHTTPError
|
||||
from lib.core.common import wasLastResponseDBMSError
|
||||
from lib.core.common import wasLastResponseHTTPError
|
||||
from lib.core.convert import getBytes
|
||||
|
|
@ -91,7 +92,8 @@ def _comparison(page, headers, code, getRatioValue, pageLength):
|
|||
if page:
|
||||
# In case of an DBMS error page return None
|
||||
if kb.errorIsNone and (wasLastResponseDBMSError() or wasLastResponseHTTPError()) and not kb.negativeLogic:
|
||||
return None
|
||||
if not (wasLastResponseHTTPError() and getLastRequestHTTPError() in (conf.ignoreCode or [])):
|
||||
return None
|
||||
|
||||
# Dynamic content lines to be excluded before comparison
|
||||
if not kb.nullConnection:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue