* fixed offline zombie not deleting * Bump jsdoc-to-markdown from 6.0.1 to 7.0.1 (#2161) Bumps [jsdoc-to-markdown](https://github.com/jsdoc2md/jsdoc-to-markdown) from 6.0.1 to 7.0.1. - [Release notes](https://github.com/jsdoc2md/jsdoc-to-markdown/releases) - [Commits](https://github.com/jsdoc2md/jsdoc-to-markdown/compare/v6.0.1...v7.0.1) --- updated-dependencies: - dependency-name: jsdoc-to-markdown dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bug: Core - 1785 Fixed public hook url configuration settings (#2163) * added spec file for testing changes * added local host getter to configuration class * added default value 0.0.0.0 for local host if it's not set * added port config getter with default * added port config getter with default * fixed spelling errors for port * added public configuration values and validation * removed logic from public port as it was not required * added beef host to configuration class * added beef port to configuration class and removed default http.port logic from public_port * fixed rubocop errors and refactored spec tests * added beef host configuration values used for external resources * added beef url to configuration * added spec file for testing changes * added local host getter to configuration class * added default value 0.0.0.0 for local host if it's not set * added port config getter with default * added port config getter with default * fixed spelling errors for port * added public configuration values and validation * removed logic from public port as it was not required * added beef host to configuration class * added beef port to configuration class and removed default http.port logic from public_port * fixed rubocop errors and refactored spec tests * added beef host configuration values used for external resources * added beef url to configuration * created command spec file * add before statement to load all enabled modules to test command class * add spec to check if configuration instance exists by setting and accessing a config variable * updated http proto for beef host * reverting changes on this file, dev values set * removed some unessessary checks * fixed grammar test now we're only testing one configuration attribute * added hook url for contextual usage * refactoring admin_ui with new code usage * fixed issue with the location of the beef.http.https.public_enabled * refactored powershell module and extension * adding the new config setting for public https beign enabled * refactor qrcode extension * replace video fake plugin refactor * social engineering refactoring * phonegap module refactoring * exploit refactoing * network module refactoing * ipec module refactoring * host module refactoring * debug refactoring * browser refactoring * social engineering extension refactoring * core main server refactoring * core main console banner refactoring * removing dev test * fixed area with location of http.https.enabled * changed the hook url definition to return the hook file path * updated banners to use new configuration getters * updated extensions and modules with the hook url change * added new public.host configuration settings and validations for depicated usage of public * updated to use public.port configuration * added validation for old configuration public_port * updated to use public https configuration setting * updated config with new settings format * fixed get to point to new locations * fixed pointer to hook_file_path * Update extensions/social_engineering/web_cloner/web_cloner.rb Co-authored-by: bcoles <bcoles@gmail.com> * updated enabled to enable * making sure default configuration file does not have preset values Co-authored-by: bcoles <bcoles@gmail.com> * bumped versions to 0.5.2.0 * Usability: #2145. Added user input request for beef update within 'beef' install script (#2162) * added user input request for beef update * swaped git pull from system to backticks * flags added for auto update and timout to input * updated install.txt to reference the update-beef script (#2160) Co-authored-by: Andrew Wheatley <a@andrews-mini.home> Co-authored-by: Isaac Powell <36595182+DeezyE@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: bcoles <bcoles@gmail.com>
171 lines
5.5 KiB
Ruby
171 lines
5.5 KiB
Ruby
#
|
|
# Copyright (c) 2006-2021 Wade Alcorn - wade@bindshell.net
|
|
# Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
# See the file 'doc/COPYING' for copying permission
|
|
#
|
|
|
|
# Remove Thin 'Server' response header
|
|
Thin.send :remove_const, :SERVER
|
|
Thin::SERVER = nil
|
|
|
|
module BeEF
|
|
module Core
|
|
class Server
|
|
include Singleton
|
|
attr_reader :root_dir, :url, :configuration, :command_urls, :mounts, :semaphore
|
|
|
|
def initialize
|
|
@configuration = BeEF::Core::Configuration.instance
|
|
@url = @configuration.beef_url_str
|
|
@root_dir = File.expand_path('../../../', __dir__)
|
|
@command_urls = {}
|
|
@mounts = {}
|
|
@rack_app
|
|
@semaphore = Mutex.new
|
|
end
|
|
|
|
def to_h
|
|
{
|
|
'beef_version' => @configuration.get('beef_version'),
|
|
'beef_url' => @url,
|
|
'beef_root_dir' => @root_dir,
|
|
'beef_host' => @configuration.beef_host,
|
|
'beef_port' => @configuration.beef_port,
|
|
'beef_public' => @configuration.public_host,
|
|
'beef_public_port' => @configuration.public_port,
|
|
'beef_hook' => @configuration.get('beef.http.hook_file'),
|
|
'beef_proto' => @configuration.beef_proto,
|
|
'client_debug' => @configuration.get('beef.client_debug')
|
|
}
|
|
end
|
|
|
|
#
|
|
# Mounts a handler, can either be a hard or soft mount
|
|
#
|
|
# @param [String] url The url to mount
|
|
# @param [Class] http_handler_class Class to call once mount is triggered
|
|
# @param args Arguments to pass to the http handler class
|
|
#
|
|
def mount(url, http_handler_class, args = nil)
|
|
# argument type checking
|
|
raise TypeError, '"url" needs to be a string' unless url.string?
|
|
|
|
if args.nil?
|
|
@mounts[url] = http_handler_class
|
|
else
|
|
@mounts[url] = http_handler_class, *args
|
|
end
|
|
print_debug "Server: mounted handler '#{url}'"
|
|
end
|
|
|
|
#
|
|
# Unmounts handler
|
|
#
|
|
# @param [String] url URL to unmount.
|
|
#
|
|
def unmount(url)
|
|
raise TypeError, '"url" needs to be a string' unless url.string?
|
|
@mounts.delete url
|
|
end
|
|
|
|
#
|
|
# Reload the URL map (used by the NetworkStack AssetHandler to mount new URLs at runtime)
|
|
#
|
|
def remap
|
|
@rack_app.remap @mounts
|
|
end
|
|
|
|
#
|
|
# Prepares the BeEF http server.
|
|
#
|
|
def prepare
|
|
# Create http handler for the javascript hook file
|
|
mount(@configuration.get("beef.http.hook_file").to_s, BeEF::Core::Handlers::HookedBrowsers.new)
|
|
|
|
# Create handler for the initialization checks (Browser Details)
|
|
mount('/init', BeEF::Core::Handlers::BrowserDetails)
|
|
|
|
# Dynamically get the list of all the http handlers using the API and register them
|
|
BeEF::API::Registrar.instance.fire(BeEF::API::Server, 'mount_handler', self)
|
|
|
|
# Rack mount points
|
|
@rack_app = Rack::URLMap.new(@mounts)
|
|
|
|
return if @http_server
|
|
|
|
# Set the logging level of Thin to match the config
|
|
Thin::Logging.silent = true
|
|
if @configuration.get('beef.http.debug') == true
|
|
Thin::Logging.silent = false
|
|
Thin::Logging.debug = true
|
|
end
|
|
|
|
# Create the BeEF http server
|
|
@http_server = Thin::Server.new(
|
|
@configuration.get('beef.http.host'),
|
|
@configuration.get('beef.http.port'),
|
|
@rack_app)
|
|
|
|
# Configure SSL/TLS
|
|
return unless @configuration.get('beef.http.https.enable') == true
|
|
|
|
openssl_version = OpenSSL::OPENSSL_VERSION
|
|
if openssl_version =~ / 1\.0\.1([a-f])? /
|
|
print_warning "Warning: #{openssl_version} is vulnerable to Heartbleed (CVE-2014-0160)."
|
|
print_more 'Upgrade OpenSSL to version 1.0.1g or newer.'
|
|
end
|
|
|
|
cert_key = @configuration.get 'beef.http.https.key'
|
|
unless cert_key.start_with? '/'
|
|
cert_key = File.expand_path cert_key, $root_dir
|
|
end
|
|
unless File.exist? cert_key
|
|
print_error "Error: #{cert_key} does not exist"
|
|
exit 1
|
|
end
|
|
|
|
cert = @configuration.get 'beef.http.https.cert'
|
|
unless cert.start_with? '/'
|
|
cert = File.expand_path cert, $root_dir
|
|
end
|
|
unless File.exist? cert
|
|
print_error "Error: #{cert} does not exist"
|
|
exit 1
|
|
end
|
|
|
|
@http_server.ssl = true
|
|
@http_server.ssl_options = {
|
|
:private_key_file => cert_key,
|
|
:cert_chain_file => cert,
|
|
:verify_peer => false
|
|
}
|
|
|
|
if Digest::SHA256.hexdigest(File.read(cert)).eql?('978f761fc30cbd174eab0c6ffd2d235849260c0589a99262f136669224c8d82a') ||
|
|
Digest::SHA256.hexdigest(File.read(cert_key)).eql?('446214bb608caf9e21dd105ce3d4ea65a3f32949906f3eb25a2c622a68623122')
|
|
print_warning 'Warning: Default SSL cert/key in use.'
|
|
print_more 'Use the generate-certificate utility to generate a new certificate.'
|
|
end
|
|
rescue => e
|
|
print_error "Failed to prepare HTTP server: #{e.message}"
|
|
print_error e.backtrace
|
|
exit 1
|
|
end
|
|
|
|
#
|
|
# Starts the BeEF http server
|
|
#
|
|
def start
|
|
@http_server.start do
|
|
use OTR::ActiveRecord::ConnectionManagement
|
|
end
|
|
rescue RuntimeError => e
|
|
# port is in use
|
|
raise unless e.message.include? 'no acceptor'
|
|
print_error "Another process is already listening on port #{@configuration.get('beef.http.port')}, or you're trying to bind BeEF to an invalid IP."
|
|
print_error 'Is BeEF already running? Exiting...'
|
|
exit 127
|
|
end
|
|
end
|
|
end
|
|
end
|