Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e9dea8d

Browse files
committed
no need to raise an exception if one enumeration fails
1 parent e558040 commit e9dea8d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/generic/users.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def getUsers(self):
135135

136136
if not kb.data.cachedUsers:
137137
errMsg = "unable to retrieve the database users"
138-
raise SqlmapNoneDataException(errMsg)
138+
logger.error(errMsg)
139139

140140
return kb.data.cachedUsers
141141

0 commit comments

Comments
 (0)