mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
bug fix
This commit is contained in:
@@ -215,6 +215,9 @@ Enrico Milanese <enricomilanese@gmail.com>
|
||||
for reporting a bugs when using (-a) a single line User-Agent file
|
||||
for providing me with some ideas for the PHP backdoor
|
||||
|
||||
Anton Mogilin <azarmaster81@yahoo.com>
|
||||
for reporting a minor bug
|
||||
|
||||
Alejo Murillo Moya <alex@65535.com>
|
||||
for suggesting a feature
|
||||
|
||||
|
||||
@@ -97,7 +97,7 @@ class Enumeration:
|
||||
infoMsg = "fetching current user"
|
||||
logger.info(infoMsg)
|
||||
|
||||
query = queries[kb.dbms].currentUser.query
|
||||
query = queries[kb.dbms].current_user.query
|
||||
|
||||
if not kb.data.currentUser:
|
||||
kb.data.currentUser = inject.getValue(query)
|
||||
@@ -108,7 +108,7 @@ class Enumeration:
|
||||
infoMsg = "fetching current database"
|
||||
logger.info(infoMsg)
|
||||
|
||||
query = queries[kb.dbms].currentDb.query
|
||||
query = queries[kb.dbms].current_db.query
|
||||
|
||||
if not kb.data.currentDb:
|
||||
kb.data.currentDb = inject.getValue(query)
|
||||
|
||||
Reference in New Issue
Block a user