Files
beef/modules/exploits/zeroshell/zeroshell_2_0rc2_migrate_hook/module.rb
2024-12-25 11:40:55 +10:00

18 lines
511 B
Ruby

#
# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - https://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Zeroshell_2_0rc2_migrate_hook < BeEF::Core::Command
def self.options
[
{ 'name' => 'rhost', 'ui_label' => 'Target Host', 'value' => '192.168.0.1' },
{ 'name' => 'rport', 'ui_label' => 'Target Port', 'value' => '80' }
]
end
def post_execute
save({ 'result' => @datastore['result'] })
end
end