Dark Mode
Capec-142 Detail
DNS Cache Poisoning
Detailed Software Likelihood: High Typical Severity: High
Parents: 141
Threats: T46 T68 T276 T297 T339 T382 T395
A domain name server translates a domain name (such as www.example.com) into an IP address that Internet hosts use to contact Internet resources. An adversary modifies a public DNS cache to cause certain names to resolve to incorrect addresses that the adversary specifies. The result is that client applications that rely upon the targeted cache for domain name resolution will be directed not to the actual address of the specified domain name but to some other address. Adversaries can use this to herd clients to sites that install malware on the victim's computer or to masquerade as part of a Pharming attack.
Not present
| External ID | Source | Link | Description |
|---|---|---|---|
| CAPEC-142 | capec | https://capec.mitre.org/data/definitions/142.html | |
| CWE-348 | cwe | http://cwe.mitre.org/data/definitions/348.html | |
| CWE-345 | cwe | http://cwe.mitre.org/data/definitions/345.html | |
| CWE-349 | cwe | http://cwe.mitre.org/data/definitions/349.html | |
| CWE-346 | cwe | http://cwe.mitre.org/data/definitions/346.html | |
| CWE-350 | cwe | http://cwe.mitre.org/data/definitions/350.html | |
| T1584.002 | ATTACK | https://attack.mitre.org/wiki/Technique/T1584/002 | Compromise Infrastructure: DNS Server |
| REF-22 | reference_from_CAPEC | http://en.wikipedia.org/wiki/DNS_cache_poisoning | Wikipedia, The Wikimedia Foundation, Inc |
| REF-23 | reference_from_CAPEC | http://www.dnssec.net/dns-threats.php | DNS Threats and DNS Weaknesses, DNSSEC |
| REF-27 | reference_from_CAPEC | http://www.kb.cert.org/vuls/id/800113#pat | Vulnerability Note VU#800113, 2008--07---08, US CERT |
Explore
-
Explore resolver caches: Check DNS caches on local DNS server and client's browser with DNS cache enabled.
| Techniques |
|---|
| Run tools that check the resolver cache in the memory to see if it contains a target DNS entry. |
| Figure out if the client's browser has DNS cache enabled. |
Experiment
-
Attempt sending crafted records to DNS cache: A request is sent to the authoritative server for target website and wait for the iterative name resolver. An adversary sends bogus request to the DNS local server, and then floods responses that trick a DNS cache to remember malicious responses, which are wrong answers of DNS query.
| Techniques |
|---|
| Adversary must know the transaction ID by intercepting a DNS query, or sending a bogus query with known transaction ID. |
| If the transaction ID used to identify each query instance is randomized in some new DNS software, the attack must guess the transaction ID. Slow the response of the real DNS server by causing Denial-of-service. This gives adversaries enough time to guess transaction |
| Adversary crafts DNS response with the same transaction ID as in the request. The adversary sends out DNS responses before the authorized DNS server. This forces DNS local cache stores fake DNS response (wrong answer). The fake DNS responses usually include a malicious website's IP address. |
Exploit
-
Redirect users to malicious website: As the adversary succeeds in exploiting the vulnerability, the victim connects to a malicious site using a good web site's domain name.
| Techniques |
|---|
| Redirecting Web traffic to a site that looks enough like the original so as to not raise any suspicion. |
| Adversary-in-the-Middle (CAPEC-94) intercepts secure communication between two parties. |
- A DNS cache must be vulnerable to some attack that allows the adversary to replace addresses in its lookup table.Client applications must trust the corrupted cashed values and utilize them for their domain name resolutions.
- The adversary must have the resources to modify the targeted cache. In addition, in most cases the adversary will wish to host the sites to which users will be redirected, although in some cases redirecting to a third party site will accomplish the adversary's goals.
| Medium |
|---|
| To overwrite/modify targeted DNS cache |
Not present
- In this example, an adversary sends request to a local DNS server to look up www.example .com. The associated IP address of www.example.com is 1.3.5.7. Local DNS usually caches IP addresses and do not go to remote DNS every time. Since the local record is not found, DNS server tries to connect to remote DNS for queries. However, before the remote DNS returns the right IP address 1.3.5.7, the adversary floods local DNS with crafted responses with IP address 2.4.6.8. The result is that 2.4.6.8 is stored in DNS cache. Meanwhile, 2.4.6.8 is associated with a malicious website www.maliciousexampsle.com When users connect to www.example.com, the local DNS will direct it to www.maliciousexample.com, this works as part of a Pharming attack.