Skip to content

Commit

Permalink
Update supported browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoles committed Feb 8, 2016
1 parent 5065a55 commit fa8464b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions modules/network/get_http_servers/command.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

beef.execute(function() {

if(beef.browser.isO()) {
beef.debug("[command #<%= @command_id %>] Browser is not supported.");
beef.net.send("<%= @command_url %>", <%= @command_id %>, "fail=unsupported browser");
return;
}

var ips = new Array();
var proto = 'http';
var ipRange = "<%= @ipRange %>";
Expand Down
3 changes: 2 additions & 1 deletion modules/network/get_http_servers/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ beef:
description: "Attempts to discover HTTP servers on the specified IP range by checking for a favicon.<br/><br/>Note: set the IP address range to 'common' to scan a list of common LAN addresses."
authors: ["bcoles"]
target:
user_notify: ["FF", "IE", "C", "S"]
user_notify: ["FF", "IE", "C", "S", "MI", "OD"]
not_working: ["O"]
3 changes: 1 addition & 2 deletions modules/network/internal_network_fingerprinting/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ beef:
description: "Discover devices and applications in the victim's Local Area Network.<br/><br/>This module uses a signature based approach - based on default logo images/favicons for known network device/applications - to fingerprint each IP address within the LAN.<br/><br/>Partially based on <a href='http://yokoso.inguardians.com/'>Yokosou</a> and <a href='http://code.google.com/p/jslanscanner/'>jslanscanner</a>.<br/><br/>Note: set the IP address range to 'common' to scan a list of common LAN addresses."
authors: ["bcoles", "wade", "antisnatchor"]
target:
user_notify: ["FF", "IE", "C", "S"]
not_working: ["O"]
user_notify: ["ALL"]

0 comments on commit fa8464b

Please sign in to comment.