Skip to content

Commit 8340f8b

Browse files
committed
Minor update
1 parent 6bde50d commit 8340f8b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

data/xml/errors.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@
77
<error regexp="Warning.*?\Wmysqli?_"/>
88
<error regexp="MySQLSyntaxErrorException"/>
99
<error regexp="valid MySQL result"/>
10-
<error regexp="check the manual that corresponds to your (MySQL|MariaDB) server version"/>
10+
<error regexp="check the manual that (corresponds to|fits) your (MySQL|MariaDB) server version"/>
1111
<error regexp="Unknown column '[^ ]+' in 'field list'"/>
1212
<error regexp="MySqlClient\."/>
1313
<error regexp="com\.mysql\.jdbc"/>
1414
<error regexp="Zend_Db_(Adapter|Statement)_Mysqli_Exception"/>
1515
<error regexp="Pdo[./_\\]Mysql"/>
1616
<error regexp="MySqlException"/>
17+
<error regexp="SQLSTATE\[\d+\]: Syntax error or access violation"/>
1718
</dbms>
1819

1920
<!-- PostgreSQL -->

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.3.10.17"
21+
VERSION = "1.3.10.18"
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)