Dark Mode
Capec-31 Detail
Accessing/Intercepting/Modifying HTTP Cookies
Detailed Software Likelihood: High Typical Severity: High
Parents: 39 157
Threats: T60 T65 T98 T291 T293
Tools: 18
This attack relies on the use of HTTP Cookies to store credentials, state information and other critical data on client systems. There are several different forms of this attack. The first form of this attack involves accessing HTTP Cookies to mine for potentially sensitive data contained therein. The second form involves intercepting this data as it is transmitted from client to server. This intercepted information is then used by the adversary to impersonate the remote user/session. The third form is when the cookie's content is modified by the adversary before it is sent back to the server. Here the adversary seeks to convince the target server to operate on this falsified information.
Not present
| External ID | Source | Link | Description |
|---|---|---|---|
| CAPEC-31 | capec | https://capec.mitre.org/data/definitions/31.html | |
| CWE-565 | cwe | http://cwe.mitre.org/data/definitions/565.html | |
| CWE-302 | cwe | http://cwe.mitre.org/data/definitions/302.html | |
| CWE-311 | cwe | http://cwe.mitre.org/data/definitions/311.html | |
| CWE-113 | cwe | http://cwe.mitre.org/data/definitions/113.html | |
| CWE-539 | cwe | http://cwe.mitre.org/data/definitions/539.html | |
| CWE-20 | cwe | http://cwe.mitre.org/data/definitions/20.html | |
| CWE-315 | cwe | http://cwe.mitre.org/data/definitions/315.html | |
| CWE-384 | cwe | http://cwe.mitre.org/data/definitions/384.html | |
| CWE-472 | cwe | http://cwe.mitre.org/data/definitions/472.html | |
| CWE-602 | cwe | http://cwe.mitre.org/data/definitions/602.html | |
| CWE-642 | cwe | http://cwe.mitre.org/data/definitions/642.html | |
| T1539 | ATTACK | https://attack.mitre.org/wiki/Technique/T1539 | Steal Web Session Cookie |
| REF-1 | reference_from_CAPEC | G. Hoglund, G. McGraw, Exploiting Software: How to Break Code, 2004--02, Addison-Wesley |
Explore
-
Obtain copy of cookie: The adversary first needs to obtain a copy of the cookie. The adversary may be a legitimate end user wanting to escalate privilege, or could be somebody sniffing on a network to get a copy of HTTP cookies.
| Techniques |
|---|
| Sniff cookie using a network sniffer such as Wireshark |
| Obtain cookie using a utility such as the Firefox Cookie Manager, Chrome DevTools or AnEC Cookie Editor. |
| Steal cookie via a cross-site scripting attack. |
| Guess cookie contents if it contains predictable information. |
Experiment
-
Obtain sensitive information from cookie: The adversary may be able to get sensitive information from the cookie. The web application developers may have assumed that cookies are not accessible by end users, and thus, may have put potentially sensitive information in them.
-
Modify cookie to subvert security controls.: The adversary may be able to modify or replace cookies to bypass security controls in the application.
| Techniques |
|---|
| If cookie shows any signs of being encoded using a standard scheme such as base64, decode it. |
| Analyze the cookie's contents to determine whether it contains any sensitive information. |
| Techniques |
|---|
| Modify logical parts of cookie and send it back to server to observe the effects. |
| Modify numeric parts of cookie arithmetically and send it back to server to observe the effects. |
| Modify cookie bitwise and send it back to server to observe the effects. |
| Replace cookie with an older legitimate cookie and send it back to server to observe the effects. This technique would be helpful in cases where the cookie contains a "points balance" for a given user where the points have some value. The user may spend their points and then replace their cookie with an older one to restore their balance. |
- Target server software must be a HTTP daemon that relies on cookies.
- The cookies must contain sensitive information.
- The adversary must be able to make HTTP requests to the server, and the cookie must be contained in the reply.
- A utility that allows for the viewing and modification of cookies. Many modern web browsers support this behavior.
| Low | High |
|---|---|
| To overwrite session cookie data, and submit targeted attacks via HTTP | |
| Exploiting a remote buffer overflow generated by attack |
| Integrity | Authorization | Access Control | Confidentiality |
|---|---|---|---|
| Modify Data | Gain Privileges | Gain Privileges | Read Data |
| Gain Privileges |
- There are two main attack vectors for exploiting poorly protected session variables like cookies. One is the local machine itself which can be exploited directly at the physical level or indirectly through XSS and phishing. In addition, the adversary in the middle attack (CAPEC-94) relies on a network sniffer, proxy, or other intermediary to intercept the subject's credentials and use them to impersonate the digital subject on the host. The issue is that once the credentials are intercepted, impersonation is trivial for the adversary to accomplish if no other protection mechanisms are in place. See also: CVE-2010-5148 , CVE-2016-0353