This commit is contained in:
Miroslav Stampar 2021-05-01 11:39:42 +02:00
parent ff645a767b
commit 8bf1650d65
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ from lib.core.enums import OS
from thirdparty.six import unichr as _unichr from thirdparty.six import unichr as _unichr
# sqlmap version (<major>.<minor>.<month>.<monthly commit>) # sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.5.4.9" VERSION = "1.5.5.0"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

View File

@ -165,11 +165,11 @@ class ConnectionManager:
def get_ready_conn(self, host): def get_ready_conn(self, host):
conn = None conn = None
self._lock.acquire()
try: try:
self._lock.acquire()
if host in self._hostmap: if host in self._hostmap:
for c in self._hostmap[host]: for c in self._hostmap[host]:
if self._readymap[c]: if self._readymap.get(c):
self._readymap[c] = 0 self._readymap[c] = 0
conn = c conn = c
break break