minor update

This commit is contained in:
Miroslav Stampar 2012-03-05 09:56:48 +00:00
parent 0ead1fd87e
commit 4cfea96471
2 changed files with 8 additions and 5 deletions

View File

@ -313,6 +313,9 @@ Michael Majchrowicz <mmajchrowicz@gmail.com>
for providing really appreciated feedback for providing really appreciated feedback
for suggesting a lot of ideas and features for suggesting a lot of ideas and features
Ahmad Maulana <matdhule@gmail.com>
for contributing one tamper scripts, halfversionedmorekeywords.py
Ferruh Mavituna <ferruh@mavituna.com> Ferruh Mavituna <ferruh@mavituna.com>
for sharing ideas on the implementation of a couple of features for sharing ideas on the implementation of a couple of features
@ -323,12 +326,12 @@ David McNab <david@conscious.co.nz>
Spencer J. McIntyre <smcintyre@securestate.com> Spencer J. McIntyre <smcintyre@securestate.com>
for reporting a minor bug for reporting a minor bug
Ahmad Maulana <matdhule@gmail.com>
for contributing one tamper scripts, halfversionedmorekeywords.py
Brad Merrell <bradmer12@gmail.com> Brad Merrell <bradmer12@gmail.com>
for reporting a minor bug for reporting a minor bug
Michael Meyer <m.meyer2k@gmail.com>
for suggesting a minor feature
Enrico Milanese <enricomilanese@gmail.com> Enrico Milanese <enricomilanese@gmail.com>
for reporting a minor bug for reporting a minor bug
for sharing some ideas for the PHP backdoor for sharing some ideas for the PHP backdoor

View File

@ -193,7 +193,7 @@ class Format:
htmlParsed = "" htmlParsed = ""
if len(kb.htmlFp) == 0: if len(kb.htmlFp) == 0 or kb.heuristicTest is None:
return None return None
elif len(kb.htmlFp) == 1: elif len(kb.htmlFp) == 1:
htmlParsed = kb.htmlFp[0] htmlParsed = kb.htmlFp[0]
@ -405,7 +405,7 @@ class Backend:
fingerprint phase. fingerprint phase.
""" """
return kb.htmlFp return kb.htmlFp if kb.heuristicTest is not None else []
@staticmethod @staticmethod
def getIdentifiedDbms(): def getIdentifiedDbms():