36 lines
807 B
Ruby
36 lines
807 B
Ruby
#
|
|
# Copyright (c) 2006-2013 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 AdminUI
|
|
|
|
extend BeEF::API::Extension
|
|
|
|
@full_name = 'administration web UI'
|
|
|
|
@short_name = 'admin_ui'
|
|
|
|
@description = 'command control panel for beef using a web interface'
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
# Constants for that extension
|
|
require 'extensions/admin_ui/constants/agents'
|
|
require 'extensions/admin_ui/constants/icons'
|
|
|
|
# Classes
|
|
require 'extensions/admin_ui/classes/httpcontroller'
|
|
require 'extensions/admin_ui/classes/session'
|
|
|
|
# Handlers
|
|
require 'extensions/admin_ui/handlers/ui'
|
|
|
|
# API Hooking
|
|
require 'extensions/admin_ui/api/command'
|
|
require 'extensions/admin_ui/api/handler'
|