Dark Mode

Settings

Capec-462 Detail

Cross-Domain Search Timing

Detailed Software Typical Severity: Medium

Parents: 54

Threats: T291

Description

An attacker initiates cross domain HTTP / GET requests and times the server responses. The timing of these responses may leak important information on what is happening on the server. Browser's same origin policy prevents the attacker from directly reading the server responses (in the absence of any other weaknesses), but does not prevent the attacker from timing the responses to requests that the attacker issued cross domain.

Extended Description

For GET requests an attacker could for instance leverage the "img" tag in conjunction with "onload() / onerror()" javascript events. For the POST requests, an attacker could leverage the "iframe" element and leverage the "onload()" event. There is nothing in the current browser security model that prevents an attacker to use these methods to time responses to the attackers' cross domain requests. The timing for these responses leaks information. For instance, if a victim has an active session with their online e-mail account, an attacker could issue search requests in the victim's mailbox. While the attacker is not able to view the responses, based on the timings of the responses, the attacker could ask yes / no questions as to the content of victim's e-mails, who the victim e-mailed, when, etc. This is but one example; There are other scenarios where an attacker could infer potentially sensitive information from cross domain requests by timing the responses while asking the right questions that leak information.
External ID Source Link Description
CAPEC-462 capec https://capec.mitre.org/data/definitions/462.html
CWE-385 cwe http://cwe.mitre.org/data/definitions/385.html
CWE-352 cwe http://cwe.mitre.org/data/definitions/352.html
CWE-208 cwe http://cwe.mitre.org/data/definitions/208.html
REF-399 reference_from_CAPEC http://scarybeastsecurity.blogspot.com/2009/12/cross-domain-search-timing.html Chris Evans, Cross-Domain Search Timing, 2009--12---11
Explore
  1. Determine service to send cross domain requests to: The adversary first determines which service they will be sending the requests to

Experiment
  1. Send and time various cross domain requests: Adversaries will send a variety of cross domain requests to the target, timing the time it takes for the target to respond. Although they won't be able to read the response, the adversary can use the time to infer information about what the service did upon receiving the request.

  2. Techniques
    Using a GET request, leverage the "img" tag in conjunction with "onload() / onerror()" javascript events to time a response
    Using a POST request, leverage the "iframe" element and use the "onload()" event to time a response
Exploit
  1. Infer information from the response time: After obtaining reponse times to various requests, the adversary will compare these times and infer potentially sensitive information. An example of this could be asking a service to retrieve information and random usernames. If one request took longer to process, it is likely that a user with that username exists, which could be useful knowledge to an adversary.

  2. Techniques
    Compare timing of different requests to infer potentially sensitive information about a target service
  1. Ability to issue GET / POST requests cross domainJava Script is enabled in the victim's browserThe victim has an active session with the site from which the attacker would like to receive informationThe victim's site does not protect search functionality with cross site request forgery (CSRF) protection
  1. Ability to issue GET / POST requests cross domain
Low
Some knowledge of Java Script
Confidentiality
Read Data

Not present