trivial edits for consistency

This commit is contained in:
bcoles
2014-01-27 07:29:00 +10:30
parent 2b44c9184d
commit d230cfa593
2 changed files with 3 additions and 3 deletions

View File

@@ -8,9 +8,9 @@ beef:
firefox_extension_dropper:
enable: true
category: ["Exploits", "Local Host"]
name: "Firefox Extension Dropper"
name: "Firefox Extension (Dropper)"
description: "Create on the fly a malicious Firefox extension that embeds a dropper you can specify (add it to the 'dropper' directory). <br/><br/> The extension is based on the original work from Michael Schierl and his Metasploit module."
authors: ["antisnatchor"]
target:
user_notify: ["FF"]
not_working: ["All"]
not_working: ["All"]

View File

@@ -16,7 +16,7 @@ class Firefox_extension_dropper < BeEF::Core::Command
get '/' do
response['Content-Type'] = "application/x-xpinstall"
extension_path = settings.extension_path
print_info "Serving malicious Firefox Extension Dropper: #{extension_path}"
print_info "Serving malicious Firefox Extension (Dropper): #{extension_path}"
send_file "#{extension_path}",
:type => 'application/x-xpinstall',
:disposition => 'inline'