Files
beef/extensions/qrcode/extension.rb
2014-12-30 07:44:58 +10:00

20 lines
477 B
Ruby

#
# Copyright (c) 2006-2015 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Extension
module Qrcode
extend BeEF::API::Extension
@short_name = 'qrcode'
@full_name = 'QR Code Generator'
@description = 'This extension prints out a link to a QR Code which can be used to hook browsers into BeEF'
end
end
end
require 'extensions/qrcode/qrcode'