Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/modules/phonegap/phonegap_list_files/module.rb
1154 views
1
#
2
# Copyright (c) 2006-2025 Wade Alcorn - [email protected]
3
# Browser Exploitation Framework (BeEF) - https://beefproject.com
4
# See the file 'doc/COPYING' for copying permission
5
#
6
# phonegap
7
#
8
9
class Phonegap_list_files < BeEF::Core::Command
10
def self.options
11
[{
12
'name' => 'directory',
13
'description' => 'List files in this directory',
14
'ui_label' => 'Directory',
15
'value' => '/',
16
'width' => '300px'
17
}]
18
end
19
20
def callback
21
content = {}
22
content['Result'] = @datastore['result']
23
save content
24
end
25
end
26
27