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

Skip to content

Commit 5ad2726

Browse files
committed
Patches #2143
1 parent c4d8cab commit 5ad2726

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

lib/core/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.9.1"
22+
VERSION = "1.0.9.2"
2323
REVISION = getRevisionNumber()
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
@@ -583,7 +583,7 @@
583583
MAX_CONNECTION_CHUNK_SIZE = 10 * 1024 * 1024
584584

585585
# Maximum response total page size (trimmed if larger)
586-
MAX_CONNECTION_TOTAL_SIZE = 100 * 1024 * 1024
586+
MAX_CONNECTION_TOTAL_SIZE = 50 * 1024 * 1024
587587

588588
# For preventing MemoryError exceptions (caused when using large sequences in difflib.SequenceMatcher)
589589
MAX_DIFFLIB_SEQUENCE_LENGTH = 10 * 1024 * 1024

sqlmap.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,11 @@ def main():
203203
dataToStdout(excMsg)
204204
raise SystemExit
205205

206+
elif "MemoryError" in excMsg:
207+
errMsg = "memory exhaustion detected"
208+
logger.error(errMsg)
209+
raise SystemExit
210+
206211
elif any(_ in excMsg for _ in ("No space left", "Disk quota exceeded")):
207212
errMsg = "no space left on output device"
208213
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-
1a8eccb8108e213d7b7257302e82cef8 lib/core/settings.py
48+
80746b60fa630e1ecdecd34b97bf40c3 lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
0bc2fae1dec18cdd11954b22358293f2 lib/core/target.py
@@ -218,7 +218,7 @@ c3cc8b7727161e64ab59f312c33b541a shell/stager.aspx_
218218
1f7f125f30e0e800beb21e2ebbab18e1 shell/stager.jsp_
219219
01e3505e796edf19aad6a996101c81c9 shell/stager.php_
220220
56702e95555adee718b6a11ee7098fd4 sqlmapapi.py
221-
bb63aa4415b779ddabe93b10300ce813 sqlmap.py
221+
832010d5d68ce3357e7066ac1eaa169e sqlmap.py
222222
1316deb997418507e76221c84ec99946 tamper/apostrophemask.py
223223
a6efe8f914c769c52afec703bd73609f tamper/apostrophenullencode.py
224224
b1c56983919b69f4f6f0e7929c881e7a tamper/appendnullbyte.py

0 commit comments

Comments
 (0)