21 lines
591 B
Ruby
21 lines
591 B
Ruby
#
|
|
# Copyright (c) 2006-2016 Wade Alcorn - wade@bindshell.net
|
|
# Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
# See the file 'doc/COPYING' for copying permission
|
|
#
|
|
class Exper_ewm01_adsl_dns_hijack < BeEF::Core::Command
|
|
|
|
def self.options
|
|
return [
|
|
{'name' => 'rhost', 'ui_label' => 'Remote Host', 'value' => '192.168.1.1'},
|
|
{'name' => 'dns1', 'ui_label' => 'Primary DNS Server', 'value' => '8.8.8.8'},
|
|
{'name' => 'dns2', 'ui_label' => 'Secondary DNS Server', 'value' => '8.8.4.4'}
|
|
]
|
|
end
|
|
|
|
def post_execute
|
|
save({'result' => @datastore['result']})
|
|
end
|
|
|
|
end
|