File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ def setDbms(dbms):
3232 dbms = _ .group (1 )
3333
3434 Backend .setDbms (dbms )
35-
3635 logger .info ("the back-end DBMS is %s" % Backend .getDbms ())
3736
3837def setOs ():
Original file line number Diff line number Diff line change 1919from lib .core .revision import getRevisionNumber
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.0.5.19 "
22+ VERSION = "1.0.5.20 "
2323REVISION = getRevisionNumber ()
2424STABLE = VERSION .count ('.' ) <= 2
2525VERSION_STRING = "sqlmap/%s#%s" % (VERSION , "stable" if STABLE else "dev" )
Original file line number Diff line number Diff line change @@ -103,6 +103,9 @@ def getFingerprint(self):
103103 value += "back-end DBMS: "
104104 actVer = Format .getDbms ()
105105
106+ if inject .checkBooleanExpression ("@@USERSTAT LIKE @@USERSTAT" ):
107+ actVer += " (MariaDB fork)"
108+
106109 if not conf .extensiveFp :
107110 value += actVer
108111 return value
Original file line number Diff line number Diff line change 77 <error regexp =" Warning.*mysql_.*" />
88 <error regexp =" MySqlException \(0x" />
99 <error regexp =" valid MySQL result" />
10- <error regexp =" check the manual that corresponds to your MySQL server version" />
10+ <error regexp =" check the manual that corresponds to your ( MySQL|MariaDB) server version" />
1111 <error regexp =" MySqlClient\." />
1212 <error regexp =" com\.mysql\.jdbc\.exceptions" />
1313 </dbms >
You can’t perform that action at this time.
0 commit comments