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

Skip to content

Commit 6b06332

Browse files
committed
Fixes #3145
1 parent c268663 commit 6b06332

3 files changed

Lines changed: 4 additions & 4 deletions

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

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

lib/core/target.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ def _setRequestParams():
8383
conf.parameters[None] = "direct connection"
8484
return
8585

86+
hintNames = []
8687
testableParameters = False
8788

8889
# Perform checks on GET parameters
@@ -101,7 +102,6 @@ def _setRequestParams():
101102

102103
if conf.data is not None:
103104
conf.method = HTTPMETHOD.POST if not conf.method or conf.method == HTTPMETHOD.GET else conf.method
104-
hintNames = []
105105

106106
def process(match, repl):
107107
retVal = match.group(0)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ c9a56e58984420a5abb7a3f7aadc196d lib/core/optiondict.py
4747
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4848
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
4949
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
50-
c769cdd91e5adaf3c6a1cdfe24b7a544 lib/core/settings.py
50+
8a43d5859fe5a416edcbe75f9570f909 lib/core/settings.py
5151
0dfc2ed40adf72e302291f6ecd4406f6 lib/core/shell.py
5252
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
53-
8f8613d1a960d53655ceee0114e2b206 lib/core/target.py
53+
36bd2dc292c0e10e39bd9c43b77fe1bc lib/core/target.py
5454
72d499ca8d792e90a1ebfb2ad2341a51 lib/core/testing.py
5555
de9922a29c71a235cb95a916ff925db2 lib/core/threads.py
5656
c40758411bb0bd68764d78e0bb72bd0f lib/core/unescaper.py

0 commit comments

Comments
 (0)