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

Skip to content

Commit eb862d0

Browse files
committed
Fixes #3496
1 parent 1248fe5 commit eb862d0

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.3.2.27"
22+
VERSION = "1.3.2.28"
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def main():
228228
logger.critical(errMsg)
229229
raise SystemExit
230230

231-
elif "MemoryError" in excMsg:
231+
elif any(_ in excMsg for _ in ("MemoryError", "Cannot allocate memory")):
232232
errMsg = "memory exhaustion detected"
233233
logger.critical(errMsg)
234234
raise SystemExit

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ d5ef43fe3cdd6c2602d7db45651f9ceb lib/core/readlineng.py
5050
7d8a22c582ad201f65b73225e4456170 lib/core/replication.py
5151
3179d34f371e0295dd4604568fb30bcd lib/core/revision.py
5252
d6269c55789f78cf707e09a0f5b45443 lib/core/session.py
53-
1ab84830277bc8690adc2e2db916bb8f lib/core/settings.py
53+
17915750bdbf0710c2a160bbdfc8680c lib/core/settings.py
5454
4483b4a5b601d8f1c4281071dff21ecc lib/core/shell.py
5555
10fd19b0716ed261e6d04f311f6f527c lib/core/subprocessng.py
5656
43772ea73e9e3d446f782af591cb4eda lib/core/target.py
@@ -236,7 +236,7 @@ ec2ba8c757ac96425dcd2b97970edd3a shell/stagers/stager.asp_
236236
0c48ddb1feb7e38a951ef05a0d48e032 shell/stagers/stager.jsp_
237237
2f9e459a4cf6a58680978cdce5ff7971 shell/stagers/stager.php_
238238
41522f8ad02ac133ca0aeaab374c36a8 sqlmapapi.py
239-
76998d373c6aef8d36d617a9b21d6eaf sqlmap.py
239+
9693388e705f68e0e307dc225c64ae42 sqlmap.py
240240
772fb3dd15edc9d4055ab9f9dee0c203 tamper/0x2char.py
241241
3d89a5c4c33d4d1d9303f5e3bd11f0ae tamper/apostrophemask.py
242242
1fd0eec63970728c1e6628b2e4c21d81 tamper/apostrophenullencode.py

0 commit comments

Comments
 (0)