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 .revision import getRevisionNumber
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.0.8.13 "
22+ VERSION = "1.0.8.14 "
2323REVISION = getRevisionNumber ()
2424TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2525TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
Original file line number Diff line number Diff line change @@ -87,8 +87,9 @@ def create_sock():
8787
8888 if not success :
8989 errMsg = "can't establish SSL connection"
90- if distutils .version .LooseVersion (PYVERSION ) < distutils .version .LooseVersion ("2.7.10" ):
91- errMsg += " (please retry with Python >= 2.7.10)"
90+ # Reference: https://docs.python.org/2/library/ssl.html
91+ if distutils .version .LooseVersion (PYVERSION ) < distutils .version .LooseVersion ("2.7.9" ):
92+ errMsg += " (please retry with Python >= 2.7.9)"
9293 raise SqlmapConnectionException (errMsg )
9394
9495class HTTPSHandler (urllib2 .HTTPSHandler ):
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
45455ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
464699a2b496b9d5b546b335653ca801153f lib/core/revision.py
47477c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48- 97402bde44901d08374c54f6f9acce4e lib/core/settings.py
48+ 5134b2c12742dd3e81969ffac38961d3 lib/core/settings.py
49497af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
505023657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
51510bc2fae1dec18cdd11954b22358293f2 lib/core/target.py
@@ -71,7 +71,7 @@ a3e83cfe7e6825fb1b70951ad290d2ae lib/request/basic.py
717172a0e7bb1010bb39c6538dbc77eae180 lib/request/connect.py
727249b4c583af68689de5f9acb162de2939 lib/request/direct.py
73731a46f7bb26b23ec0c0d9d9c95828241b lib/request/dns.py
74- 567656470d23a42ab57ec55a03989dbb lib/request/httpshandler.py
74+ 70ceefe39980611494d4f99afb96f652 lib/request/httpshandler.py
7575cc9c82cfffd8ee9b25ba3af6284f057e lib/request/__init__.py
7676aa155f8b27d56485d3ff15efa5e1b07a lib/request/inject.py
77773fc323d525beddd14cd4d4dca4934fa8 lib/request/methodrequest.py
You can’t perform that action at this time.
0 commit comments