File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed 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.2.12.38 "
22+ VERSION = "1.2.12.39 "
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 @@ -342,7 +342,7 @@ def _(match):
342342 retVal = match .group (0 )
343343 try :
344344 retVal = unichr (int (match .group (1 )))
345- except ValueError :
345+ except ( ValueError , OverflowError ) :
346346 pass
347347 return retVal
348348 page = re .sub (r"&#(\d+);" , _ , page )
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
49490c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
5050a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5151fcb74fcc9577523524659ec49e2e964b lib/core/session.py
52- 6487983b44e37792b7b5a1581ca943c7 lib/core/settings.py
52+ 9a25febb08854816a83ee455005b865d lib/core/settings.py
5353a971ce157d04de96ba6e710d3d38a9a8 lib/core/shell.py
5454a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
55551581be48127a3a7a9fd703359b6e7567 lib/core/target.py
@@ -69,7 +69,7 @@ fb2e2f05dde98caeac6ccf3e67192177 lib/parse/configfile.py
6969f6b5957bf2103c3999891e4f45180bce lib/parse/payloads.py
7070492654567e72b6a14584651fcd9f16e6 lib/parse/sitemap.py
717130eed3a92a04ed2c29770e1b10d39dc0 lib/request/basicauthhandler.py
72- 2b81435f5a7519298c15c724e3194a0d lib/request/basic.py
72+ 67c035eda3066b44c592b2f602e44b3e lib/request/basic.py
7373859b6ad583e0ffba154f17ee179b5b89 lib/request/comparison.py
7474999f9b050ffe9e9b7ddbc9fdb0a18432 lib/request/connect.py
7575dd4598675027fae99f2e2475b05986da lib/request/direct.py
You can’t perform that action at this time.
0 commit comments