Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d5fc2c9

Browse files
committed
Patch for #4227
1 parent c28ad8f commit d5fc2c9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

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

thirdparty/identywaf/identYwaf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
HTTPCookieProcessor = urllib2.HTTPCookieProcessor
6161

6262
NAME = "identYwaf"
63-
VERSION = "1.0.124"
63+
VERSION = "1.0.127"
6464
BANNER = r"""
6565
` __ __ `
6666
____ ___ ___ ____ ______ `| T T` __ __ ____ _____
@@ -125,7 +125,7 @@
125125
proxies = list()
126126
proxies_index = 0
127127

128-
_exit = exit
128+
_exit = sys.exit
129129

130130
def exit(message=None):
131131
if message:

0 commit comments

Comments
 (0)