git-svn-id: https://beef.googlecode.com/svn/trunk@521 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
96 lines
3.4 KiB
Ruby
96 lines
3.4 KiB
Ruby
module BeEF
|
|
|
|
#
|
|
# Handle HTTP requests and call the relevant functions in the derived classes
|
|
#
|
|
class HttpController
|
|
|
|
attr_accessor :headers, :status, :body, :paths, :currentuser, :params
|
|
|
|
C = BeEF::Models::Command
|
|
CM = BeEF::Models::CommandModule
|
|
Z = BeEF::Models::Zombie
|
|
|
|
#
|
|
# Class constructor. Takes data from the child class and populates itself with it.
|
|
#
|
|
def initialize(data = {})
|
|
@erubis = nil
|
|
@status = 200 if data['status'].nil?
|
|
|
|
@headers = {'Content-Type' => 'text/html; charset=UTF-8'} if data['headers'].nil?
|
|
|
|
if data['paths'].nil? and self.methods.include? "index"
|
|
@paths = {'index' => '/'}
|
|
else
|
|
@paths = data['paths']
|
|
end
|
|
end
|
|
|
|
#
|
|
# Handle HTTP requests and call the relevant functions in the derived classes
|
|
#
|
|
def run(request, response)
|
|
@request = request
|
|
@params = request.query
|
|
@session = BeEF::UI::Session.instance
|
|
auth_url = '/ui/authentication'
|
|
|
|
# test if session is unauth'd and whether the auth functionality is requested
|
|
if not @session.valid_session?(@request) and not self.class.eql?(BeEF::UI::Authentication)
|
|
@body = page_redirect(auth_url) # redirect to auth page
|
|
return
|
|
end
|
|
|
|
# get the mapped function (if it exists) from the derived class
|
|
path = request.path_info
|
|
raise WEBrick::HTTPStatus::BadRequest, "path is invalid" if not Filter::is_valid_path_info?(path)
|
|
function = @paths[path] || @paths[path + '/'] # check hash for '<path>' and '<path>/'
|
|
raise WEBrick::HTTPStatus::BadRequest, "path does not exist" if function.nil?
|
|
|
|
# call the relevant mapped function
|
|
function.call
|
|
|
|
# build the template filename and apply it - if the file exists
|
|
function_name = function.name # used for filename
|
|
class_s = self.class.to_s.sub('BeEF::UI::', '').downcase # used for directory name
|
|
template_ui = "#{$root_dir}/lib/ui/#{class_s}/#{function_name}.html"
|
|
@eruby = Erubis::FastEruby.new(File.read(template_ui)) if File.exists? template_ui # load the template file
|
|
@body = @eruby.result(binding()) if not @eruby.nil? # apply template and set the response
|
|
|
|
# set content type
|
|
if @headers['Content-Type'].nil?
|
|
@headers['Content-Type']='text/html; charset=UTF-8' # default content and charset type for all pages
|
|
@headers['Content-Type']='application/json; charset=UTF-8' if request.path =~ /.json$/
|
|
end
|
|
|
|
end
|
|
|
|
# Constructs a redirect page
|
|
def page_redirect(location) "<html><head></head><body>" + script_redirect(location) + "</body>" end
|
|
|
|
# Constructs a redirect script
|
|
def script_redirect(location) "<script> document.location=\"#{location}\"</script>" end
|
|
|
|
# Constructs a html script tag
|
|
def script_tag(filename) "<script src=\"#{$url}/ui/public/javascript/#{filename}\" type=\"text/javascript\"></script>" end
|
|
|
|
# Constructs a html stylesheet tag
|
|
def stylesheet_tag(filename) "<link rel=\"stylesheet\" href=\"#{$url}/ui/public/css/#{filename}\" type=\"text/css\" />" end
|
|
|
|
# Constructs a hidden html nonce tag
|
|
def nonce_tag
|
|
@session = BeEF::UI::Session.instance
|
|
"<input type=\"hidden\" name=\"nonce\" id=\"nonce\" value=\"" + @session.get_nonce + "\"/>"
|
|
end
|
|
|
|
private
|
|
|
|
@eruby
|
|
|
|
# Unescapes a URL-encoded string.
|
|
def unescape(s); s.tr('+', ' ').gsub(/%([\da-f]{2})/in){[$1].pack('H*')} end
|
|
|
|
end
|
|
|
|
end |