mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
bug fix
This commit is contained in:
parent
f1e2c1867f
commit
a8e42a4f2b
2 changed files with 5 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue