Skip to main content

Rogue DNS server

In the Rogue DNS Server attack, a malicious actor configures a DNS server to act as the Authoritative Name Server for the targeted domain name. In simple terms he creates a DNS zone on a server and inserts DNS records of his choosing.

This can be accomplished in the following ways:
  • A legitimate DNS server gets compromised
  • A DNS client gets pointed to a malicious DNS server (using DNS changer malware or by changing the router's DNS settings)
  • By a malicious actor at an ISP or DNS provider (using his access to make unauthorized changes)


With the Rogue DNS server in place, the original DNS query never reaches the legitimate Authoritative Name server. In fact it never reaches any server other than the compromised DNS resolver (that may not be exactly correct since usually any sizable recursive DNS infrastructure will have multiple layers of resolvers, forwarders and caching servers).

Let’s look at an example.

For this purpose we will spin up a simple Unbound DNS server instance that will act as a recursive resolver. Later we will configure it with static entries of our choosing.

I have used unbound-docker image and exposed the service on localhost.

Let’s confirm it works.

dig www.securesenses.net @127.0.0.1
; <<>> DiG 9.10.6 <<>> www.securesenses.net @127.0.0.1
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 54715
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;www.securesenses.net.        IN    A
;; ANSWER SECTION:
www.securesenses.net.    1736    IN    CNAME    ghs.google.com.
ghs.google.com.        236    IN    A    172.217.16.51

Valid DNS response packet

We've confirmed we got the correct response and that the response is not authoritative.  Our local DNS server works as expected. Now we’ll make it turn rogue…

To configure Unbound with a static entry we simply add the following line to the configuration:

local-data: "www.securesenses.net. IN A 1.2.3.4"


When we retry the query again, we receive an authoritative answer for the targeted domain name.

dig www.securesenses.net @127.0.0.1
; <<>> DiG 9.10.6 <<>> www.securesenses.net @127.0.0.1
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 40437
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;www.securesenses.net.        IN    A
;; ANSWER SECTION:
www.securesenses.net.    3600    IN    A    1.2.3.4

Rogue DNS response packet

As seen above we turned our local DNS server into an illegitimate authoritative name server for securesenses.net. domain. 

Anyone can setup a local DNS server and make it authoritative for any domain. A DNS server becomes rogue when someone either sets one up and then points unsuspecting DNS clients to it or compromises an existing legitimate server that is in use and re-configures it.  

Comments

Popular posts from this blog

x.509 Certificates - Critical vs non-critical extensions

Extensions are used to associate additional information with the user or the key.  Each certificate extension has three attributes - extnID, critical, extnValue extnID - Extension ID - an OID that specifies the format and definitions of the extension critical - Critical flag - Boolean value extnValue - Extension value  Criticality flag specifies whether the information in an extension is important. If an application doesn't recognize the extension marked as critical, the certificate cannot be accepted. If an extension is not marked as critical (critical value False) it can be ignored by an application. In Windows, critical extensions are marked with a yellow exclamation mark,  View certificate extensions using OpenSSL: # openssl x509 -inform pem -in cert.pem -text -noout (output abbreviated)         X509v3 extensions:             X509v3 Key Usage: critical                 Digital Signature, Key Encipherment             X509v3 Subject Key Identifier

DNS response and error types

In this post we explore common DNS response codes. We will cover the following responses: NOERROR SERVFAIL NXDOMAIN NODATA REFUSED Throughout article we’ll refer to the following RFCs: RFC 1034 - DOMAIN NAMES - CONCEPTS AND FACILITIES RFC 2308 - Negative Caching of DNS Queries (DNS NCACHE) RFC 2136 - Dynamic Updates in the Domain Name System (DNS UPDATE) RFC 8914 - Extended DNS Errors Response Codes - RCODEs The DNS RCODES are best defined in RFC2316 .  They signify what type of response was sent by the server. “RCODE   Response code - this four bit field is undefined in requests and set in responses.”   The table below shows the summary of the currently defined RCODEs. Mnemonic Val Description NOERROR 0 No error condition.

Count number of lines - 'findstr'

How do I count number of lines in a command output? findstr /r/n "^" | find /c ":" Above commands will display number of lines output by whatever command (well, nearly whatever) you specify in the front.  For example:  C:\>ping localhost | findstr /r/n "^" | find /c ":" FINDSTR: // ignored 12 This comes handy if you want to find out how many OUs you have in Active Directory: dsquery ou  -limit 0 | findstr /r/n "^" | find /c ":" How many user accounts there are: dsquery user -limit 0 | findstr /r/n "^" | find /c ":" Computers: dsquery computer -limit | findstr /r/n "^" | find /c ":"