Skip to content

Commit f034122

Browse files
committed
1 parent 0df2456 commit f034122

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.6.24"
22+
VERSION = "1.0.6.25"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

lib/utils/pivotdumptable.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
from lib.core.common import unArrayizeValue
1919
from lib.core.common import unsafeSQLIdentificatorNaming
2020
from lib.core.data import conf
21+
from lib.core.data import kb
2122
from lib.core.data import logger
2223
from lib.core.data import queries
2324
from lib.core.dicts import DUMP_REPLACEMENTS
@@ -165,6 +166,8 @@ def _(column, pivotValue):
165166
entries[column].append(value)
166167

167168
except KeyboardInterrupt:
169+
kb.dumpKeyboardInterrupt = True
170+
168171
warnMsg = "user aborted during enumeration. sqlmap "
169172
warnMsg += "will display partial output"
170173
logger.warn(warnMsg)

0 commit comments

Comments
 (0)