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.1.67 "
22+ VERSION = "1.3.1.68 "
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 @@ -232,11 +232,16 @@ def main():
232232 logger .critical (errMsg )
233233 raise SystemExit
234234
235- elif any (_ in excMsg for _ in ("No space left" , "Disk quota exceeded" )):
235+ elif any (_ in excMsg for _ in ("No space left" , "Disk quota exceeded" , "Disk full while accessing" )):
236236 errMsg = "no space left on output device"
237237 logger .critical (errMsg )
238238 raise SystemExit
239239
240+ elif any (_ in excMsg for _ in ("The paging file is too small" ,)):
241+ errMsg = "no space left for paging file"
242+ logger .critical (errMsg )
243+ raise SystemExit
244+
240245 elif all (_ in excMsg for _ in ("No such file" , "_'" , "self.get_prog_name()" )):
241246 errMsg = "corrupted installation detected ('%s'). " % excMsg .strip ().split ('\n ' )[- 1 ]
242247 errMsg += "You should retrieve the latest development version from official GitHub "
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ fe370021c6bc99daf44b2bfc0d1effb3 lib/core/patch.py
49497d8a22c582ad201f65b73225e4456170 lib/core/replication.py
50503179d34f371e0295dd4604568fb30bcd lib/core/revision.py
5151d6269c55789f78cf707e09a0f5b45443 lib/core/session.py
52- d9ee29595bb4272fda11b3079753cdd6 lib/core/settings.py
52+ 83f405c564cb10f99610ae30bbbbcf70 lib/core/settings.py
53534483b4a5b601d8f1c4281071dff21ecc lib/core/shell.py
545410fd19b0716ed261e6d04f311f6f527c lib/core/subprocessng.py
55559c7b5c6397fb3da33e7a4d7876d159c6 lib/core/target.py
@@ -234,7 +234,7 @@ ec2ba8c757ac96425dcd2b97970edd3a shell/stagers/stager.asp_
2342340c48ddb1feb7e38a951ef05a0d48e032 shell/stagers/stager.jsp_
2352352f9e459a4cf6a58680978cdce5ff7971 shell/stagers/stager.php_
23623641522f8ad02ac133ca0aeaab374c36a8 sqlmapapi.py
237- 5cf6426651800869be0d4750b07b1b74 sqlmap.py
237+ 3926fb4ba81b03abede53d507ab89aab sqlmap.py
238238772fb3dd15edc9d4055ab9f9dee0c203 tamper/0x2char.py
2392393d89a5c4c33d4d1d9303f5e3bd11f0ae tamper/apostrophemask.py
2402401fd0eec63970728c1e6628b2e4c21d81 tamper/apostrophenullencode.py
You can’t perform that action at this time.
0 commit comments