mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +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
|
|
@ -19,7 +19,7 @@ from lib.core.enums import DBMS_DIRECTORY_NAME
|
|||
from lib.core.enums import OS
|
||||
|
||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||
VERSION = "1.1.12.27"
|
||||
VERSION = "1.1.12.28"
|
||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
||||
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
||||
|
|
|
|||
|
|
@ -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