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 7module BeEF 8 module API 9 module Extension 10 attr_reader :full_name, :short_name, :description 11 12 @full_name = '' 13 @short_name = '' 14 @description = '' 15 end 16 end 17end 18 19