Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/modules/exploits/local_host/safari_launch_app/module.rb
1875 views
1
#
2
# Copyright (c) 2006-2026 Wade Alcorn - [email protected]
3
# Browser Exploitation Framework (BeEF) - https://beefproject.com
4
# See the file 'doc/COPYING' for copying permission
5
#
6
class Safari_launch_app < BeEF::Core::Command
7
def self.options
8
[
9
{ 'name' => 'app_path', 'ui_label' => 'Application', 'value' => '/usr/sbin/netstat' }
10
]
11
end
12
end
13
14