Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/core/api/modules.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
module BeEF
7
module API
8
module Modules
9
# @note Defined API Paths
10
API_PATHS = {
11
'post_soft_load' => :post_soft_load
12
}.freeze
13
14
# Fires just after all modules are soft loaded
15
def post_soft_load; end
16
end
17
end
18
end
19
20