mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Guessing patch for #2837 (as of lack of user data)
This commit is contained in:
parent
bc1fbc5a58
commit
1df0461893
3 changed files with 6 additions and 4 deletions
|
|
@ -27,6 +27,7 @@ from lib.core.enums import EXPECTED
|
|||
from lib.core.exception import SqlmapConnectionException
|
||||
from lib.core.exception import SqlmapNoneDataException
|
||||
from lib.core.settings import MAX_INT
|
||||
from lib.core.settings import NULL
|
||||
from lib.core.unescaper import unescaper
|
||||
from lib.request import inject
|
||||
|
||||
|
|
@ -145,9 +146,10 @@ def pivotDumpTable(table, colList, count=None, blind=True):
|
|||
except ValueError:
|
||||
pass
|
||||
|
||||
if isNoneValue(value):
|
||||
if isNoneValue(value) or value == NULL:
|
||||
breakRetrieval = True
|
||||
break
|
||||
|
||||
pivotValue = safechardecode(value)
|
||||
|
||||
if conf.limitStart or conf.limitStop:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue