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

Skip to content

Commit 8de4820

Browse files
committed
Minor update
1 parent df5fabb commit 8de4820

2 files changed

Lines changed: 5 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.8.16"
21+
VERSION = "1.4.8.17"
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)

lib/parse/cmdline.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -958,8 +958,10 @@ def _format_action_invocation(self, action):
958958
else:
959959
argv[tamperIndex] = "%s,%s" % (argv[tamperIndex], argv[i].split('=')[1] if '=' in argv[i] else (argv[i + 1] if i + 1 < len(argv) and not argv[i + 1].startswith('-') else ""))
960960
argv[i] = ""
961-
elif argv[i] in ("-H", "--header"):
962-
if i + 1 < len(argv):
961+
elif argv[i] in ("-H", "--header") or any(argv[i].startswith("%s=" % _) for _ in ("-H", "--header")):
962+
if '=' in argv[i]:
963+
extraHeaders.append(argv[i].split('=', 1)[1])
964+
elif i + 1 < len(argv):
963965
extraHeaders.append(argv[i + 1])
964966
elif argv[i] == "--deps":
965967
argv[i] = "--dependencies"

0 commit comments

Comments
 (0)