23 lines
870 B
Ruby
23 lines
870 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 Tabnabbing < BeEF::Core::Command
|
|
def self.options
|
|
configuration = BeEF::Core::Configuration.instance
|
|
proto = configuration.get('beef.http.https.enable') == true ? 'https' : 'http'
|
|
uri = "#{proto}://#{configuration.get('beef.http.host')}:#{configuration.get('beef.http.port')}/demos/basic.html"
|
|
[
|
|
{ 'name' => 'url', 'description' => 'Redirect URL', 'ui_label' => 'URL', 'value' => uri, 'width' => '400px' },
|
|
{ 'name' => 'wait', 'description' => 'Wait (minutes)', 'ui_label' => 'Wait (minutes)', 'value' => '15', 'width' => '150px' }
|
|
]
|
|
end
|
|
|
|
def post_execute
|
|
content = {}
|
|
content['tabnab'] = @datastore['tabnab']
|
|
save content
|
|
end
|
|
end
|