Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/core/api/main/migration.rb
1155 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 Migration
9
# @note Defined API Paths
10
API_PATHS = {
11
'migrate_commands' => :migrate_commands
12
}.freeze
13
14
# Fired just after the migration process
15
def migrate_commands; end
16
end
17
end
18
end
19
20