Dark Mode

Settings

Capec-472 Detail

Browser Fingerprinting

Detailed Software Typical Severity: Low

Parents: 541

Threats: T60 T291

Description

An attacker carefully crafts small snippets of Java Script to efficiently detect the type of browser the potential victim is using. Many web-based attacks need prior knowledge of the web browser including the version of browser to ensure successful exploitation of a vulnerability. Having this knowledge allows an attacker to target the victim with attacks that specifically exploit known or zero day weaknesses in the type and version of the browser used by the victim. Automating this process via Java Script as a part of the same delivery system used to exploit the browser is considered more efficient as the attacker can supply a browser fingerprinting method and integrate it with exploit code, all contained in Java Script and in response to the same web page request by the browser.

Not present

External ID Source Link Description
CAPEC-472 capec https://capec.mitre.org/data/definitions/472.html
CWE-200 cwe http://cwe.mitre.org/data/definitions/200.html
REF-410 reference_from_CAPEC http://www.thespanner.co.uk/2009/01/29/detecting-browsers-javascript-hacks/ Gareth Heyes, Detecting browsers javascript hacks, The Spanner, 2009--01---29

Not present

  1. Victim's browser visits a website that contains attacker's Java ScriptJava Script is not disabled in the victim's browser

Not present

Not present

Not present

  1. The following code snippets can be used to detect various browsers: Firefox 2/3 FF=/a/[-1]=='a' Firefox 3 FF3=(function x(){})[-5]=='x' Firefox 2 FF2=(function x(){})[-6]=='x' IE IE='\v'=='v' Safari Saf=/a/.__proto__=='//' Chrome Chr=/source/.test((/a/.toString+'')) Opera Op=/^function \\(/.test([].sort)