Skip to content

Commit 4cfea96

Browse files
committed
minor update
1 parent 0ead1fd commit 4cfea96

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

doc/THANKS

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,9 @@ Michael Majchrowicz <mmajchrowicz@gmail.com>
313313
for providing really appreciated feedback
314314
for suggesting a lot of ideas and features
315315

316+
Ahmad Maulana <matdhule@gmail.com>
317+
for contributing one tamper scripts, halfversionedmorekeywords.py
318+
316319
Ferruh Mavituna <ferruh@mavituna.com>
317320
for sharing ideas on the implementation of a couple of features
318321

@@ -323,12 +326,12 @@ David McNab <david@conscious.co.nz>
323326
Spencer J. McIntyre <smcintyre@securestate.com>
324327
for reporting a minor bug
325328

326-
Ahmad Maulana <matdhule@gmail.com>
327-
for contributing one tamper scripts, halfversionedmorekeywords.py
328-
329329
Brad Merrell <bradmer12@gmail.com>
330330
for reporting a minor bug
331331

332+
Michael Meyer <m.meyer2k@gmail.com>
333+
for suggesting a minor feature
334+
332335
Enrico Milanese <enricomilanese@gmail.com>
333336
for reporting a minor bug
334337
for sharing some ideas for the PHP backdoor

lib/core/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def getErrorParsedDBMSes():
193193

194194
htmlParsed = ""
195195

196-
if len(kb.htmlFp) == 0:
196+
if len(kb.htmlFp) == 0 or kb.heuristicTest is None:
197197
return None
198198
elif len(kb.htmlFp) == 1:
199199
htmlParsed = kb.htmlFp[0]
@@ -405,7 +405,7 @@ def getErrorParsedDBMSes():
405405
fingerprint phase.
406406
"""
407407

408-
return kb.htmlFp
408+
return kb.htmlFp if kb.heuristicTest is not None else []
409409

410410
@staticmethod
411411
def getIdentifiedDbms():

0 commit comments

Comments
 (0)