mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Fixes #1200
This commit is contained in:
parent
05a496c275
commit
ac74184422
1 changed files with 4 additions and 0 deletions
|
|
@ -36,6 +36,10 @@ class Takeover(GenericTakeover):
|
||||||
|
|
||||||
banVer = kb.bannerFp["dbmsVersion"]
|
banVer = kb.bannerFp["dbmsVersion"]
|
||||||
|
|
||||||
|
if banVer >= "5.0.67":
|
||||||
|
logger.info("retrieving MySQL plugin directory absolute path")
|
||||||
|
self.__basedir = unArrayizeValue(inject.getValue("SELECT @@plugin_dir"))
|
||||||
|
|
||||||
# On MySQL 5.1 >= 5.1.19 and on any version of MySQL 6.0
|
# On MySQL 5.1 >= 5.1.19 and on any version of MySQL 6.0
|
||||||
if banVer >= "5.1.19":
|
if banVer >= "5.1.19":
|
||||||
if self.__basedir is None:
|
if self.__basedir is None:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue