Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from beefproject:master #16

Merged
merged 4 commits into from
Jul 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,21 @@
#gem 'simplecov', require: false, group: :test
gem 'eventmachine'
gem 'thin'
gem 'sinatra'
gem 'rack'
gem 'rack-protection'
gem 'sinatra', '>= 2.0.2'
gem 'rack', '>= 2.2.3'
gem 'rack-protection', '>= 2.0.0'
gem 'em-websocket' # WebSocket support
gem 'uglifier'
gem 'uglifier', '>= 2.7.2'
gem 'mime-types'
gem 'execjs'
gem 'ansi'
gem 'term-ansicolor', :require => 'term/ansicolor'
gem 'json'
gem 'rubyzip', '>= 1.2.2'
gem 'espeak-ruby', '>= 1.0.4' # Text-to-Voice
gem 'nokogiri', '>= 1.10.4'
gem 'rake'
#ruby 2.4 isnt compatible with a higher version of active-record
gem 'otr-activerecord'
gem 'nokogiri', '>= 1.10.8'
gem 'rake', '>= 12.3.3'
gem 'otr-activerecord'
gem 'sqlite3'

# Geolocation support
Expand Down
12 changes: 12 additions & 0 deletions core/main/handlers/browserdetails.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ def setup()

# validate hook session value
session_id = get_param(@data, 'beefhook')
print_debug "[INIT] Processing Browser Details for session #{session_id}"
(self.err_msg "session id is invalid"; return) if not BeEF::Filters.is_valid_hook_session_id?(session_id)
hooked_browser = HB.where(:session => session_id).first
return if not hooked_browser.nil? # browser is already registered with framework
Expand Down Expand Up @@ -404,6 +405,17 @@ def setup()
self.err_msg "Invalid value for 'browser.window.size.width' returned from the hook browser's initial connection."
end

# store and log IP details of host
print_debug("Hooked browser [id:#{zombie.id}] has IP [ip: #{zombie.ip}]")

if os_name != nil and os_version != nil
BeEF::Core::Models::NetworkHost.create(:hooked_browser => zombie, :ip => zombie.ip, :ntype => 'Host', :os => os_name + "-" + os_version)
elsif os_name != nil
BeEF::Core::Models::NetworkHost.create(:hooked_browser => zombie, :ip => zombie.ip, :ntype => 'Host', :os => os_name)
else
BeEF::Core::Models::NetworkHost.create(:hooked_browser => zombie, :ip => zombie.ip, :ntype => 'Host')
end

# get and store the yes|no value for browser capabilities
capabilities = [
'browser.capabilities.vbscript',
Expand Down
6 changes: 4 additions & 2 deletions extensions/network/rest/network.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class NetworkRest < BeEF::Core::Router::Router
config = BeEF::Core::Configuration.instance
@nh = BeEF::Core::Models::NetworkHost
@ns = BeEF::Core::Models::NetworkService
@hb = BeEF::Core::Models::HookedBrowser

# Require a valid API token from a valid IP address
halt 401 unless params[:token] == config.get('beef.api_token')
Expand Down Expand Up @@ -69,7 +70,8 @@ class NetworkRest < BeEF::Core::Router::Router
begin
id = params[:id]

hosts = @nh.where(hooked_browser_id: id).distinct.order(:id)
hooked_browser = @hb.where(session: id).distinct
hosts = @nh.where(hooked_browser: hooked_browser).distinct.order(:hooked_browser)
count = hosts.length

result = {}
Expand Down Expand Up @@ -121,7 +123,7 @@ class NetworkRest < BeEF::Core::Router::Router

host = @nh.find(id)
raise InvalidParamError, 'id' if host.nil?
halt 404 if host.empty?
halt 404 if host.nil?

host.to_h.to_json
rescue InvalidParamError => e
Expand Down