Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/extensions/qrcode/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 Qrcode
9
extend BeEF::API::Extension
10
11
@short_name = 'qrcode'
12
@full_name = 'QR Code Generator'
13
@description = 'This extension generates QR Codes for specified URLs which can be used to hook browsers into BeEF.'
14
end
15
end
16
end
17
18
require 'extensions/qrcode/qrcode'
19
20