mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 02:53:46 +03:00
Bug fix for MySQL fingerprinting (excluding HSQLDB MySQL look-alike)
This commit is contained in:
parent
41db0e0eea
commit
fa4e867035
|
@ -177,6 +177,14 @@ class Fingerprint(GenericFingerprint):
|
||||||
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
result = inject.checkBooleanExpression("ROUNDMAGIC(NULL) IS NULL")
|
||||||
|
|
||||||
|
if result:
|
||||||
|
warnMsg = "the back-end DBMS is not %s" % DBMS.MYSQL
|
||||||
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
|
return False
|
||||||
|
|
||||||
# reading information_schema on some platforms is causing annoying timeout exits
|
# reading information_schema on some platforms is causing annoying timeout exits
|
||||||
# Reference: http://bugs.mysql.com/bug.php?id=15855
|
# Reference: http://bugs.mysql.com/bug.php?id=15855
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user