mirror of
https://github.com/sqlmapproject/sqlmap
synced 2026-01-21 07:34:06 +01:00
fix
This commit is contained in:
parent
c1145c244e
commit
eb33612736
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ class Fingerprint(GenericFingerprint):
|
|||
if re.search("-log$", kb.data.banner):
|
||||
banVer += ", logging enabled"
|
||||
|
||||
banVer = format.getDbms([banVer])
|
||||
banVer = format.getDbms([banVer] if banVer else None)
|
||||
value += "\n%sbanner parsing fingerprint: %s" % (blank, banVer)
|
||||
|
||||
htmlErrorFp = format.getErrorParsedDBMSes()
|
||||
|
|
|
|||
Loading…
Reference in a new issue