mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
refactoring
This commit is contained in:
parent
ec9cc19951
commit
8e4b8d345f
4 changed files with 8 additions and 8 deletions
|
|
@ -88,8 +88,8 @@ class Enumeration(GenericEnumeration):
|
|||
|
||||
if any(isTechniqueAvailable(_) for _ in (PAYLOAD.TECHNIQUE.UNION, PAYLOAD.TECHNIQUE.ERROR)) or conf.direct:
|
||||
for db in dbs:
|
||||
if not isinstance(db, basestring):
|
||||
db = db[0]
|
||||
if isinstance(db, (tuple, list)):
|
||||
db = db[0] if db else ""
|
||||
|
||||
if conf.excludeSysDbs and db in self.excludeDbsList:
|
||||
infoMsg = "skipping system database '%s'" % db
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue