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

Skip to content

Commit 1e8bf1c

Browse files
committed
Trivial update for #4595
1 parent 657c651 commit 1e8bf1c

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

lib/core/option.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2554,6 +2554,10 @@ def _basicOptionValidation():
25542554
errMsg = "switch '--text-only' is incompatible with switch '--null-connection'"
25552555
raise SqlmapSyntaxException(errMsg)
25562556

2557+
if conf.base64Parameter and conf.tamper:
2558+
errMsg = "option '--base64' is incompatible with option '--tamper'"
2559+
raise SqlmapSyntaxException(errMsg)
2560+
25572561
if conf.eta and conf.verbose > defaults.verbose:
25582562
errMsg = "switch '--eta' is incompatible with option '-v'"
25592563
raise SqlmapSyntaxException(errMsg)

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.5.3.5"
21+
VERSION = "1.5.3.6"
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)

0 commit comments

Comments
 (0)