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.
1 parent c137245 commit 549f9e7Copy full SHA for 549f9e7
modules/auxiliary/scanner/http/intel_amt_digest_bypass.rb
@@ -76,7 +76,7 @@ def run_host(ip)
76
proof = res.body.to_s
77
proof_hash = nil
78
79
- info_keys = res.body.scan(/<td class=r1><p>([^\<]+)<\/p>/).map{|x| x.first.to_s.gsub("/", "/") }
+ info_keys = res.body.scan(/<td class=r1><p>([^\<]+)(?:<\/p>)?/).map{|x| x.first.to_s.gsub("/", "/") }
80
if info_keys.length > 0
81
proof_hash = {}
82
proof = ""
@@ -106,7 +106,7 @@ def run_host(ip)
106
:proto => 'tcp',
107
:name => "Intel AMT Digest Authentication Bypass",
108
:refs => self.references,
109
- :proof => proof
+ :info => proof
110
})
111
112
rescue ::Timeout::Error, ::Errno::EPIPE
0 commit comments