Merge pull request #7 from wvu-r7/pr/10283

Fuel the hype machine
GSoC/Meterpreter_Web_Console
Brendan Coles 2018-07-13 02:57:40 +10:00 committed by GitHub
commit 4df7853fd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -499,9 +499,12 @@ class ReadableText
if (mod.respond_to?(:references) && mod.references && mod.references.length > 0)
output << "References:\n"
mod.references.each { |ref|
mod.references.each do |ref|
if ENV['FUEL_THE_HYPE_MACHINE'] && %w{LOGO SOUNDTRACK}.include?(ref.ctx_id)
Rex::Compat.open_browser(ref.ctx_val)
end
output << indent + ref.to_s + "\n"
}
end
output << "\n"
end