We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be98781 commit 5eaf1d2Copy full SHA for 5eaf1d2
2 files changed
lib/core/option.py
@@ -433,7 +433,7 @@ def __next__(self):
433
def next(self):
434
try:
435
line = next(conf.stdinPipe)
436
- except (IOError, OSError):
+ except (IOError, OSError, TypeError):
437
line = None
438
439
if line:
lib/core/settings.py
@@ -20,7 +20,7 @@
20
from thirdparty.six import unichr as _unichr
21
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
-VERSION = "1.6.4.5"
+VERSION = "1.6.4.6"
24
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
25
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
26
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
0 commit comments