We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 52be1c3 + 500cfa6 commit a3749f1Copy full SHA for a3749f1
lib/msf/core/model/host.rb
@@ -32,6 +32,12 @@ def attribute_locked?(attr)
32
def validate_fingerprint_data(fp)
33
if fp.data.kind_of?(Hash) and !fp.data.empty?
34
return true
35
+ elsif fp.ntype == "postgresql.fingerprint"
36
+ # Special case postgresql.fingerprint; it's always a string,
37
+ # and should not be used for OS fingerprinting (yet), so
38
+ # don't bother logging it. TODO: fix os fingerprint finding, this
39
+ # name collision seems silly.
40
+ return false
41
else
42
dlog("Could not validate fingerprint data: #{fp.inspect}")
43
return false
modules/exploits/freebsd/telnet/telnet_encrypt_keyid_bruteforce.rb
0 commit comments