mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Bug fix for fingerprinting MySQL
This commit is contained in:
parent
870e11a38e
commit
7a21109ad0
4 changed files with 7 additions and 7 deletions
|
|
@ -187,7 +187,7 @@ class Fingerprint(GenericFingerprint):
|
|||
infoMsg = "testing %s" % DBMS.MYSQL
|
||||
logger.info(infoMsg)
|
||||
|
||||
result = inject.checkBooleanExpression("QUARTER(NULL XOR NULL) IS NULL")
|
||||
result = inject.checkBooleanExpression("IFNULL(QUARTER(NULL),NULL XOR NULL) IS NULL")
|
||||
|
||||
if result:
|
||||
infoMsg = "confirming %s" % DBMS.MYSQL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue