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 c12eae6 commit 6c832e2Copy full SHA for 6c832e2
modules/auxiliary/scanner/ssl/openssl_heartbleed.rb
@@ -256,9 +256,9 @@ def tls_ftp
256
def run_host(ip)
257
case action.name
258
when 'SCAN'
259
- scan(bleed)
+ loot_and_report(bleed)
260
when 'DUMP'
261
- scan(bleed) # Scan & Dump are similar, scan() records results
+ loot_and_report(bleed) # Scan & Dump are similar, scan() records results
262
when 'KEYS'
263
getkeys()
264
else
@@ -313,7 +313,7 @@ def bleed()
313
heartbeat_data
314
end
315
316
- def scan(heartbeat_data)
+ def loot_and_report(heartbeat_data)
317
if heartbeat_data
318
print_good("#{peer} - Heartbeat response with leak")
319
report_vuln({
0 commit comments