File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 2020from thirdparty .six import unichr as _unichr
2121
2222# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23- VERSION = "1.5.9.29 "
23+ VERSION = "1.5.9.30 "
2424TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2525TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2626VERSION_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 @@ -87,9 +87,10 @@ def vulnTest():
8787 s = socket .socket (socket .AF_INET , socket .SOCK_STREAM )
8888 if s .connect_ex ((address , port )):
8989 break
90+ else :
91+ time .sleep (1 )
9092 finally :
9193 s .close ()
92- time .sleep (1 )
9394
9495 def _thread ():
9596 vulnserver .init (quiet = True )
You can’t perform that action at this time.
0 commit comments