Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/modules/host/insecure_url_skype/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
class Insecure_url_skype < BeEF::Core::Command
7
def self.options
8
[{
9
'name' => 'tel_num',
10
'description' => 'The telephone number to dial',
11
'ui_label' => 'Number',
12
'value' => '5551234',
13
'width' => '200px'
14
}]
15
end
16
17
def post_execute
18
content = {}
19
content['Result'] = @datastore['result']
20
save content
21
end
22
end
23
24