mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-09 08:00:36 +03:00
no need to raise an exception if one enumeration fails
This commit is contained in:
parent
e558040810
commit
e9dea8d394
|
@ -135,7 +135,7 @@ class Users:
|
||||||
|
|
||||||
if not kb.data.cachedUsers:
|
if not kb.data.cachedUsers:
|
||||||
errMsg = "unable to retrieve the database users"
|
errMsg = "unable to retrieve the database users"
|
||||||
raise SqlmapNoneDataException(errMsg)
|
logger.error(errMsg)
|
||||||
|
|
||||||
return kb.data.cachedUsers
|
return kb.data.cachedUsers
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user