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

Skip to content

Commit 7de63a7

Browse files
committed
Fixes #2694
1 parent 12f802c commit 7de63a7

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

lib/core/option.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2428,6 +2428,10 @@ def _basicOptionValidation():
24282428
errMsg = "option '--not-string' is incompatible with switch '--null-connection'"
24292429
raise SqlmapSyntaxException(errMsg)
24302430

2431+
if conf.notString and conf.nullConnection:
2432+
errMsg = "option '--tor' is incompatible with switch '--os-pwn'"
2433+
raise SqlmapSyntaxException(errMsg)
2434+
24312435
if conf.noCast and conf.hexConvert:
24322436
errMsg = "switch '--no-cast' is incompatible with switch '--hex'"
24332437
raise SqlmapSyntaxException(errMsg)

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.1.9.14"
22+
VERSION = "1.1.9.15"
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)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ a44d7a4cc6c9a67a72d6af2f25f4ddac lib/core/exception.py
4040
310efc965c862cfbd7b0da5150a5ad36 lib/core/__init__.py
4141
9ba39bf66e9ecd469446bdbbeda906c3 lib/core/log.py
4242
9d7069d81e4a520ed3fbcac584c1e86e lib/core/optiondict.py
43-
c5f09788ee8ff9c9d12a052986875bc6 lib/core/option.py
43+
79700f211e6824f183c2f776134a8b92 lib/core/option.py
4444
5f2f56e6c5f274408df61943f1e080c0 lib/core/profiling.py
4545
40be71cd774662a7b420caeb7051e7d5 lib/core/readlineng.py
4646
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4747
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4848
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
49-
89f30959f7b60afa43c774ce1e7d0206 lib/core/settings.py
49+
59bbe7a8c9ae6c58f691375de5064801 lib/core/settings.py
5050
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5151
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5252
effc153067a00bd43461bfc1cdec1122 lib/core/target.py

0 commit comments

Comments
 (0)