Skipping quit exception in case of --search

This commit is contained in:
Miroslav Stampar
2015-09-24 13:44:51 +02:00
parent e19b097ab5
commit ea4cef9c6d
3 changed files with 8 additions and 4 deletions

View File

@@ -89,10 +89,12 @@ class Entries:
if isinstance(tblList[0], (set, tuple, list)):
tblList = tblList[0]
else:
elif not conf.search:
errMsg = "unable to retrieve the tables "
errMsg += "in database '%s'" % unsafeSQLIdentificatorNaming(conf.db)
raise SqlmapNoneDataException(errMsg)
else:
return
for tbl in tblList:
tblList[tblList.index(tbl)] = safeSQLIdentificatorNaming(tbl, True)