File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919from 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 "
2323TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2424TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2525VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ d5ef43fe3cdd6c2602d7db45651f9ceb lib/core/readlineng.py
50507d8a22c582ad201f65b73225e4456170 lib/core/replication.py
51513179d34f371e0295dd4604568fb30bcd lib/core/revision.py
5252d6269c55789f78cf707e09a0f5b45443 lib/core/session.py
53- 1ab84830277bc8690adc2e2db916bb8f lib/core/settings.py
53+ 17915750bdbf0710c2a160bbdfc8680c lib/core/settings.py
54544483b4a5b601d8f1c4281071dff21ecc lib/core/shell.py
555510fd19b0716ed261e6d04f311f6f527c lib/core/subprocessng.py
565643772ea73e9e3d446f782af591cb4eda lib/core/target.py
@@ -236,7 +236,7 @@ ec2ba8c757ac96425dcd2b97970edd3a shell/stagers/stager.asp_
2362360c48ddb1feb7e38a951ef05a0d48e032 shell/stagers/stager.jsp_
2372372f9e459a4cf6a58680978cdce5ff7971 shell/stagers/stager.php_
23823841522f8ad02ac133ca0aeaab374c36a8 sqlmapapi.py
239- 76998d373c6aef8d36d617a9b21d6eaf sqlmap.py
239+ 9693388e705f68e0e307dc225c64ae42 sqlmap.py
240240772fb3dd15edc9d4055ab9f9dee0c203 tamper/0x2char.py
2412413d89a5c4c33d4d1d9303f5e3bd11f0ae tamper/apostrophemask.py
2422421fd0eec63970728c1e6628b2e4c21d81 tamper/apostrophenullencode.py
You can’t perform that action at this time.
0 commit comments