mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-24 10:33:47 +03:00
Fixes #4664
This commit is contained in:
parent
ff645a767b
commit
8bf1650d65
|
@ -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)
|
||||||
|
|
4
thirdparty/keepalive/keepalive.py
vendored
4
thirdparty/keepalive/keepalive.py
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user