Files
2025-12-26 19:18:05 +10:00

23 lines
541 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 Insecure_url_skype < BeEF::Core::Command
def self.options
[{
'name' => 'tel_num',
'description' => 'The telephone number to dial',
'ui_label' => 'Number',
'value' => '5551234',
'width' => '200px'
}]
end
def post_execute
content = {}
content['Result'] = @datastore['result']
save content
end
end