File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1919from lib .core .enums import OS
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.1.12.27 "
22+ VERSION = "1.1.12.28 "
2323TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2424TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2525VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change 2727from lib .core .exception import SqlmapConnectionException
2828from lib .core .exception import SqlmapNoneDataException
2929from lib .core .settings import MAX_INT
30+ from lib .core .settings import NULL
3031from lib .core .unescaper import unescaper
3132from lib .request import inject
3233
@@ -145,9 +146,10 @@ def _(column, pivotValue):
145146 except ValueError :
146147 pass
147148
148- if isNoneValue (value ):
149+ if isNoneValue (value ) or value == NULL :
149150 breakRetrieval = True
150151 break
152+
151153 pivotValue = safechardecode (value )
152154
153155 if conf .limitStart or conf .limitStop :
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ f872699e948d0692ce11b54781da814c lib/core/log.py
4646760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
484802d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49- c9d7d58cff59c79667e150b3fd6bcd6c lib/core/settings.py
49+ 3973af0d9064380cf28b0c09b0f9a4a2 lib/core/settings.py
505035bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252d93501771b41315f9fb949305b6ed257 lib/core/target.py
@@ -108,7 +108,7 @@ fe3a38f820ae05a95f92ab53e22b46d0 lib/utils/har.py
1081088eb07912f9c12f9e8bae67d6cbda5e23 lib/utils/hash.py
109109f20ae1aa6a8d1d5373ace1f7ed3476a7 lib/utils/htmlentities.py
1101105fb9aaf874daa47ea2b672a22740e56b lib/utils/__init__.py
111- 67dbbf9cc9aa9665c1efcebdba5b1559 lib/utils/pivotdumptable.py
111+ 0a37d19cde10c547c9f09b18bdc99a21 lib/utils/pivotdumptable.py
11211256c922696bd3d05d7be96e73b0650c4e lib/utils/progress.py
11311377ae65dba6d0fc69dfb96f800537308d lib/utils/purge.py
114114760290393e35e5f53f15ba46e09d59dd lib/utils/search.py
You can’t perform that action at this time.
0 commit comments