Skip to content

Commit 94ab178

Browse files
committed
Fixes #4688
1 parent c4c1571 commit 94ab178

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/core/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from thirdparty.six import unichr as _unichr
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.5.5.8"
22+
VERSION = "1.5.5.9"
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)

thirdparty/ansistrm/ansistrm.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#
55

66
import logging
7+
import re
78
import sys
89

910
from lib.core.settings import IS_WIN

0 commit comments

Comments
 (0)