21 lines
854 B
Ruby
21 lines
854 B
Ruby
#
|
|
# Copyright (c) 2006-2026 Wade Alcorn - wade@bindshell.net
|
|
# Browser Exploitation Framework (BeEF) - https://beefproject.com
|
|
# See the file 'doc/COPYING' for copying permission
|
|
#
|
|
class Kemp_command_execution < BeEF::Core::Command
|
|
def self.options
|
|
[
|
|
{ 'name' => 'rhost', 'ui_label' => 'URL', 'value' => 'https://x.x.x.x' },
|
|
{ 'name' => 'rport', 'ui_label' => 'Remote Port', 'value' => '443' },
|
|
{ 'name' => 'timeout', 'ui_label' => 'Timeout (s)', 'value' => '15' },
|
|
{ 'name' => 'cmd', 'ui_label' => 'Command', 'description' => 'Enter shell command to execute.', 'type' => 'textarea', 'value' => 'ls', 'width' => '200px' }
|
|
]
|
|
end
|
|
|
|
def post_execute
|
|
save({ 'result' => @datastore['result'] }) unless @datastore['result'].nil?
|
|
save({ 'fail' => @datastore['fail'] }) unless @datastore['fail'].nil?
|
|
end
|
|
end
|