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

Skip to content

Commit ebbc688

Browse files
committed
Fixes #2496
1 parent 3140fd0 commit ebbc688

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.1.4.42"
22+
VERSION = "1.1.4.43"
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/techniques/error/use.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def _oneShotErrorUse(expression, field=None, chunkTest=False):
176176
else:
177177
break
178178

179-
if output:
179+
if output and conf.verbose in (1, 2) and not conf.api:
180180
if kb.fileReadMode:
181181
dataToStdout(_formatPartialContent(output).replace(r"\n", "\n").replace(r"\t", "\t"))
182182
elif offset > 1:

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ ebb778c2d26eba8b34d7d8658e4105a6 lib/core/optiondict.py
4646
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4747
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4848
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
49-
5c0309b56aaa28782f85c32bcd6a3086 lib/core/settings.py
49+
e07f462feeee9f7371da366f9799bd1c lib/core/settings.py
5050
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5151
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5252
155e2d3fda87b2e3ffa4f7a770513946 lib/core/target.py
@@ -93,7 +93,7 @@ e7f3012f4f9e822d39eabd934d050b0e lib/takeover/web.py
9393
ab1601a7f429b47637c4fb8af703d0f1 lib/techniques/dns/test.py
9494
d3da4c7ceaf57c4687a052d58722f6bb lib/techniques/dns/use.py
9595
310efc965c862cfbd7b0da5150a5ad36 lib/techniques/error/__init__.py
96-
18a23760ee5f83ab671b70be6ca3bcdb lib/techniques/error/use.py
96+
0a236e558e0f57a1986246d0db769025 lib/techniques/error/use.py
9797
310efc965c862cfbd7b0da5150a5ad36 lib/techniques/__init__.py
9898
310efc965c862cfbd7b0da5150a5ad36 lib/techniques/union/__init__.py
9999
211e6dc49af6ad6bd3590d16d41e86db lib/techniques/union/test.py

0 commit comments

Comments
 (0)