Skip to content

Commit cad6cfe

Browse files
committed
Fixes #2843
1 parent 7ade3aa commit cad6cfe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ def readInput(message, default=None, checkBatch=True, boolean=False):
10481048
if boolean:
10491049
retVal = retVal.strip().upper() == 'Y'
10501050

1051-
return retVal
1051+
return retVal or ""
10521052

10531053
def randomRange(start=0, stop=1000, seed=None):
10541054
"""

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.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.1.12.25"
22+
VERSION = "1.1.12.26"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ d2cdb9e832e18a81e936ca3348144b16 lib/controller/handler.py
2727
5fb9aaf874daa47ea2b672a22740e56b lib/controller/__init__.py
2828
367c522e9b2ea0cf585c733efa4f961f lib/core/agent.py
2929
9eccf8db8b8e259e30c1eade4ee499b0 lib/core/bigarray.py
30-
afb84336be84f622f9d16cbb9a18ddd3 lib/core/common.py
30+
740c507961604906351cc5f447441166 lib/core/common.py
3131
5c918135b3776bb129edbfdd422ece1b lib/core/convert.py
3232
90b1b08368ac8a859300e6fa6a8c796e lib/core/data.py
3333
1c14bdbf47b8dba31f73da9ad731a54a lib/core/datatype.py
@@ -46,7 +46,7 @@ f872699e948d0692ce11b54781da814c lib/core/log.py
4646
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
4848
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49-
56f7972f202626d2a8b9e02502e26c18 lib/core/settings.py
49+
1f35b3da2c4497b5fb39f50a6d8e0738 lib/core/settings.py
5050
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252
d93501771b41315f9fb949305b6ed257 lib/core/target.py

0 commit comments

Comments
 (0)