19 lines
474 B
Ruby
Executable File
19 lines
474 B
Ruby
Executable File
#
|
|
# 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 Get_all_cookies < BeEF::Core::Command
|
|
def self.options
|
|
[
|
|
{ 'name' => 'url', 'ui_label' => 'Domain (e.g. http://facebook.com)', 'value' => 'default_all' }
|
|
]
|
|
end
|
|
|
|
def post_execute
|
|
content = {}
|
|
content['Return'] = @datastore['return']
|
|
save content
|
|
end
|
|
end
|