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

Skip to content

Commit 1e44c4d

Browse files
committed
Patch related to #2257
1 parent 10097dd commit 1e44c4d

3 files changed

Lines changed: 9 additions & 3 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.0.10.60"
22+
VERSION = "1.0.11.0"
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)

sqlmap.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,12 @@ def main():
214214
dataToStdout(excMsg)
215215
raise SystemExit
216216

217+
elif "/tamper/" in excMsg:
218+
logger.critical(errMsg)
219+
print
220+
dataToStdout(excMsg)
221+
raise SystemExit
222+
217223
elif "MemoryError" in excMsg:
218224
errMsg = "memory exhaustion detected"
219225
logger.error(errMsg)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
4545
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
4646
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
4747
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48-
a69157619025ede338abb16f5e519519 lib/core/settings.py
48+
c956b2508dd6a0b390b5ed3467f8009f lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
c3ace7874a536d801f308cf1fd03df99 lib/core/target.py
@@ -224,7 +224,7 @@ c3cc8b7727161e64ab59f312c33b541a shell/stager.aspx_
224224
1f7f125f30e0e800beb21e2ebbab18e1 shell/stager.jsp_
225225
01e3505e796edf19aad6a996101c81c9 shell/stager.php_
226226
56702e95555adee718b6a11ee7098fd4 sqlmapapi.py
227-
4b8d19a39402dc7f8a341608a9625aa1 sqlmap.py
227+
42480adeb9e5500bb3304d6a1572e2b4 sqlmap.py
228228
1316deb997418507e76221c84ec99946 tamper/apostrophemask.py
229229
a6efe8f914c769c52afec703bd73609f tamper/apostrophenullencode.py
230230
b1c56983919b69f4f6f0e7929c881e7a tamper/appendnullbyte.py

0 commit comments

Comments
 (0)