mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
minor update
This commit is contained in:
parent
0ead1fd87e
commit
4cfea96471
|
@ -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
|
||||||
|
|
|
@ -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():
|
||||||
|
|
Loading…
Reference in New Issue
Block a user