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.2.6.14 "
22+ VERSION = "1.2.6.15 "
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 @@ -85,7 +85,10 @@ def update():
8585 if not success :
8686 logger .error ("update could not be completed" )
8787 else :
88- os .chmod (os .path .join (directory , "sqlmap.py" ), attrs )
88+ try :
89+ os .chmod (os .path .join (directory , "sqlmap.py" ), attrs )
90+ except OSError :
91+ logger .warning ("could not set the file attributes of '%s'" % os .path .join (directory , "sqlmap.py" ))
8992 else :
9093 infoMsg = "updating sqlmap to the latest development revision from the "
9194 infoMsg += "GitHub repository"
Original file line number Diff line number Diff line change @@ -47,14 +47,14 @@ c9a56e58984420a5abb7a3f7aadc196d lib/core/optiondict.py
47470c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4848a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
4949fcb74fcc9577523524659ec49e2e964b lib/core/session.py
50- 9962d6781b4c6d216b2982d3c2e0aa6a lib/core/settings.py
50+ bb3cda01d9f6c71382beba250e0777fc lib/core/settings.py
51510dfc2ed40adf72e302291f6ecd4406f6 lib/core/shell.py
5252a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
53536306284edcccc185b2df085438572b0d lib/core/target.py
545472d499ca8d792e90a1ebfb2ad2341a51 lib/core/testing.py
5555de9922a29c71a235cb95a916ff925db2 lib/core/threads.py
5656c40758411bb0bd68764d78e0bb72bd0f lib/core/unescaper.py
57- c54afa9950529a5974166464bfd4c34a lib/core/update.py
57+ 9d395b143be295a143eb5c9b926f3569 lib/core/update.py
5858e772deb63270375e685fa5a7b775c382 lib/core/wordlist.py
59591e5532ede194ac9c083891c2f02bca93 lib/__init__.py
60607620f1f4b8791e13c7184c06b5421754 lib/parse/banner.py
You can’t perform that action at this time.
0 commit comments