Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/extensions/customhook/extension.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 Extension
8
module Customhook
9
extend BeEF::API::Extension
10
11
@short_name = 'customhook'
12
13
@full_name = 'Custom Hook Point with iFrame Impersonation'
14
15
@description = 'An auto-hook and full-screen iframe - demonstrating extension creation and social engineering attacks'
16
end
17
end
18
end
19
20
require 'extensions/customhook/api'
21
require 'extensions/customhook/handler'
22
23