mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Minor patch to return False if --is-dba returns None
This commit is contained in:
parent
c67b39d14d
commit
c9447fbbe7
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ class Users:
|
||||||
query = queries[Backend.getIdentifiedDbms()].is_dba.query
|
query = queries[Backend.getIdentifiedDbms()].is_dba.query
|
||||||
|
|
||||||
query = agent.forgeCaseStatement(query)
|
query = agent.forgeCaseStatement(query)
|
||||||
kb.data.isDba = inject.checkBooleanExpression(query)
|
kb.data.isDba = inject.checkBooleanExpression(query) or False
|
||||||
|
|
||||||
return kb.data.isDba
|
return kb.data.isDba
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue