Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 492fbae

Browse files
committed
Fixes #4143
1 parent a8d81a7 commit 492fbae

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

data/xml/queries.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1534,7 +1534,6 @@
15341534
<substring query="SUBSTR((%s),%d,%d)"/>
15351535
<concatenate query="%s||%s"/>
15361536
<case query="SELECT (CASE WHEN (%s) THEN 1 ELSE 0 END)"/>
1537-
<hex/>
15381537
<inference query="SUBSTR((%s),%d,1)>'%c'"/>
15391538
<banner/>
15401539
<current_user/>
@@ -1577,7 +1576,6 @@
15771576
<substring query="SUBSTRING((%s) FROM %d FOR %d)"/>
15781577
<concatenate query="%s||%s"/>
15791578
<case query="SELECT (CASE WHEN (%s) THEN '1' ELSE '0' END)"/>
1580-
<hex/>
15811579
<inference query="SUBSTRING((%s) FROM %d FOR 1)>'%c'"/>
15821580
<banner/>
15831581
<current_user query="CURRENT_USER"/>

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.4.3.9"
21+
VERSION = "1.4.3.10"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)