mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
bug fix
This commit is contained in:
parent
f1e2c1867f
commit
a8e42a4f2b
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user