Moved a few more modules and updated some module descriptions

This commit is contained in:
bcoles
2012-05-20 18:50:10 +09:30
parent 460b619cc1
commit f8eba21cb4
6 changed files with 7 additions and 5 deletions

View File

@@ -19,7 +19,7 @@ beef:
enable: true
category: "Exploits"
name: "Safari Launch App"
description: "Launch an application from the victim machine.<br/><br/>See CVE-2011-3230 for more details.<br /><br />Safari <= 5.1 on OS X is vulnerable. Original discovery by Aaron Sigel. Also see CVE-2011-3230"
description: "Launch an application from the victim machine.<br/><br/>See CVE-2011-3230 for more details.<br /><br />Safari <= 5.1 on OS X is vulnerable. Original discovery by Aaron Sigel."
authors: ["antisnatchor"]
target:
user_notify: ["S"]

View File

@@ -17,9 +17,9 @@ beef:
module:
windows_mail_client_dos:
enable: true
category: "IPEC"
category: "Exploits"
name: "Windows Mail Client DoS"
description: "This module exploits an unhandled exception in Windows Mail to crash the client remotely.<br /><br />Windows Mail is launched and then crashed if it is not already open. It comes installed by default on Windows Vista (but it's vulnerable also in Windows 7 SP2).<br /><br />The protocol handler used will be: nntp."
description: "This module exploits an unhandled exception in Windows Mail to crash the client remotely.<br /><br />Windows Mail is launched and then crashed if it is not already open. It comes installed by default on Windows Vista (but it's also vulnerable on Windows 7 SP2).<br /><br />The protocol handler used will be: nntp."
authors: ["bcoles"]
target:
user_notify: ["FF", "S"]

View File

@@ -340,7 +340,7 @@ Clippy.prototype.hahaha = function() {
document.body.appendChild(div);
_c.openBubble("<%== @thankyoumessage %>");
setTimeout(function () { _c.killClippy(); }, 5000);
beef.net.send('<%= @command_url %>', <%= @command_id %>, 'result=user has accepted');
beef.net.send('<%= @command_url %>', <%= @command_id %>, 'answer=user has accepted');
}
Clippy.prototype.addHelp = function(_help, is_startphrase) {

View File

@@ -16,8 +16,10 @@
class Pretty_theft < BeEF::Core::Command
def self.options
configuration = BeEF::Core::Configuration.instance
logo_uri = "http://#{configuration.get("beef.http.host")}:#{configuration.get("beef.http.port")}/ui/media/images/beef.png"
return [
{'name' =>'imgsauce', 'description' =>'Custom Logo', 'ui_label'=>'Custom Logo', 'value' => 'http://beefproject.com/images/logo.png'}
{'name' =>'imgsauce', 'description' =>'Custom Logo', 'ui_label'=>'Custom Logo', 'value' => logo_uri}
]
end