Added browser fingerprints

git-svn-id: https://beef.googlecode.com/svn/trunk@1320 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
bcoles@gmail.com
2011-09-29 15:25:18 +00:00
parent 6132b2a3f0
commit 87020e89f3
2 changed files with 10 additions and 7 deletions

View File

@@ -34,12 +34,15 @@ beef.execute(function() {
// Browser fingerprints // in the form of: "URI","Browser","version(s)"
var fingerprints = new Array(
new Array("Firefox","moz-icon://.autoreg?size=16"),
new Array("Firefox","2.x","resource:///res/html/gopher-audio.gif"),
new Array("Firefox","2.x-3.x","jar:resource:///chrome/classic.jar!/skin/classic/browser/Secure.png"),
new Array("Firefox","4.x-5.x","resource:///chrome/browser/skin/classic/browser/Secure.png"),
new Array("Safari","1+","feed://__rsrc__/__rsrc__/NextPage.tif"),
new Array("Firefox","1+","moz-icon://.autoreg?size=16"),
new Array("Firefox","2","resource:///res/html/gopher-audio.gif"),
new Array("Firefox","2-3","jar:resource:///chrome/classic.jar!/skin/classic/browser/Secure.png"),
new Array("Firefox","4-5","resource:///chrome/browser/skin/classic/browser/Secure.png"),
new Array("Firefox","1-6","resource:///chrome/browser/content/branding/icon128.png"),
new Array("Firefox","4+","resource:///chrome/browser/skin/classic/browser/Geolocation-16.png"),
new Array("Internet Explorer","5.x-6.x","res://shdoclc.dll/pagerror.gif"),
new Array("Firefox","7+","resource:///chrome/browser/content/browser/aboutHome-snippet1.png"),
new Array("Internet Explorer","5-6","res://shdoclc.dll/pagerror.gif"),
new Array("Internet Explorer","7+","res://ieframe.dll/info_48.png")
);

View File

@@ -19,8 +19,8 @@ beef:
enable: true
category: "Browser"
name: "Fingerprint Browser"
description: "This module attempts to fingerprint the browser type and version using URI handlers unique to Internet Explorer and Mozilla Firefox. This method does not rely on JavaScript objects which may have been modified by the user or browser compatibility mode."
description: "This module attempts to fingerprint the browser type and version using URI handlers unique to Safari, Internet Explorer and Mozilla Firefox. This method does not rely on JavaScript objects which may have been modified by the user or browser compatibility mode."
authors: ["bcoles"]
target:
working: ["IE", "FF"]
working: ["IE", "FF", "S"]
not_working: ["ALL"]