File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1648,7 +1648,10 @@ def _cleanupOptions():
16481648 conf .rParam = []
16491649
16501650 if conf .paramDel and '\\ ' in conf .paramDel :
1651- conf .paramDel = conf .paramDel .decode ("string_escape" )
1651+ try :
1652+ conf .paramDel = conf .paramDel .decode ("string_escape" )
1653+ except ValueError :
1654+ pass
16521655
16531656 if conf .skip :
16541657 conf .skip = conf .skip .replace (" " , "" )
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.2.15 "
22+ VERSION = "1.2.2.16 "
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 @@ -40,13 +40,13 @@ cada93357a7321655927fc9625b3bfec lib/core/exception.py
40401e5532ede194ac9c083891c2f02bca93 lib/core/__init__.py
4141458a194764805cd8312c14ecd4be4d1e lib/core/log.py
424263ac6631d75e4f7c20b946a0c06bad33 lib/core/optiondict.py
43- 785746cab318fe550d98c37296a0a888 lib/core/option.py
43+ 12f9b2435f4967562770be248cf50843 lib/core/option.py
44447dadbb9a301d40cc8cd9c7491e99b43d lib/core/profiling.py
4545ffa5f01f39b17c8d73423acca6cfe86a lib/core/readlineng.py
46460c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4747a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
4848fcb74fcc9577523524659ec49e2e964b lib/core/session.py
49- 0c204b9aa8cc9637a6ef495ea603935e lib/core/settings.py
49+ f80eeded0ed77a678dd7a69d6a8fd3ae lib/core/settings.py
5050d0adc28a38e43a787df4471f7f027413 lib/core/shell.py
515163491be462c515a1a3880c27c2acc4a2 lib/core/subprocessng.py
5252505aaa61e1bba3c3d4567c3e667699e3 lib/core/target.py
You can’t perform that action at this time.
0 commit comments