Files
beef/modules/exploits/shell_shocked/module.rb
2014-10-29 17:54:10 +00:00

22 lines
724 B
Ruby

#
# Copyright (c) 2006-2014 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Shell_shocked < BeEF::Core::Command
def self.options
return [
{'name' => 'Target', 'description' => 'Vulnerable cgi script path', 'ui_label' => 'Target', 'value' => 'http://127.0.0.1/cgi-bin/test.cgi'},
{ 'name' => 'method', 'ui_label' => 'HTTP Method', 'value' => 'GET' },
{'name' => 'Bash_Command', 'description' => 'the command to execute', 'ui_label' => 'Bash Command', 'value' => '/bin/ping -c 3 www.google.it'}
]
end
def post_execute
save({'result' => @datastore['result']})
end
end