Skip to main content

Resolve list of hostnames to IP addresses

Recently I needed to check if a large number of hostnames were resolving to valid IP addresses on an internal network. This is what I came up with:


for /F %i in (names.txt) do @echo %i & nslookup %i | findstr /n "Address" | findstr /b "5"


The output looks as follows: 



TESTBOX1
5:Address:  10.11.20.43
TESTBOX2
5:Address:  10.11.20.44
TESTBOX3
5:Address:  10.11.20.45
TESTBOX4
*** dnsbox1.lab.local can't find TESTBOX4: Non-existent domain


As we can see first three records resolve. The fourth one doesn't have DNS record. 

For this to work, each hostname must be on a separate line in a text file "names.txt" and the command must be run from directory where the file sits. Alternatively you can specify full path (i.e c:\names.txt).

Let's break it down and see what's actually going on. 

We use for /f loop to parse names.txt and assign each line to variable %i, we then suppress output  (@echo) of nslookup and parse it to output only lines containing word Address (findstr /n), we also prepend a number of the line the matching string was found on. Then we again parse the output to display only lines starting with 5.  

This is what we get if we break the command down to separate chunks:

Here we only output file contents. 

for /F %i in (names.txt) do @echo %i

TESTBOX1
TESTBOX2
TESTBOX3
TESTBOX4


Here we display full nslookup output:


for /F %i in (names.txt) do @echo %i & nslookup %i



TESTBOX1
Server:      dnsbox1.lab.local
Address:  10.11.20.43
TESTBOX2
Server:      dnsbox1.lab.local
Address:  10.11.20.44
TESTBOX3
Server:      dnsbox1.lab.local
Address:  10.11.20.45
TESTBOX4
Server:      dnsbox1.lab.local
*** dnsbox1.lab.local can't find TESTBOX4: Non-existent domain


Here we display full nslookup output with numbered lines:

for /F %i in (names.txt) do @echo %i & nslookup %i | findstr /n "Address"

TESTBOX1
2:Address:  10.10.10.10
5:Address:  10.11.20.43
TESTBOX2
2:Address:  10.10.10.10
5:Address:  10.11.20.44
TESTBOX3
2:Address:  10.10.10.10
5:Address:  10.11.20.45
TESTBOX4
*** dnsbox1.lab.local can't find TESTBOX4: Non-existent domain
2:Address:  10.10.10.10


If we want to query specific DNS server (replace [DNSsrv] with correct IP/name)

for /F %i in (names.txt) do @echo %i & nslookup %i [DNSsrv] | findstr /n "Address" | findstr /b "5"


If you want to use it in a batch file you've to specify variables with double percentage sign ("%%i).


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.

DNS blocking in Indonesia

DNS based censorship and domain blocking in Indonesia is very inconsistent among ISPs. There’s a government mandated black list which the ISPs operating in the country should enforce. However, Indonesia lacks centralised internet infrastructure and has many separate ISPs. In addition, the Indonesian government granted ISPs the authority to block content at their own discretion. All of this leads to a very inconsistent DNS blocking in Indonesia. Official DNS domain blacklist in Indonesia The Government mandated DNS blacklist is published in a redacted form and can be downloaded here: https://trustpositif.kominfo.go.id/ . This is where the blocked domains get redirected to. We can search the database and check if a domain is blocked. In the screenshot below we can see that a popular cryptocurrency exchange is blocked (Ada) and that wikipedia.org is not (Tidak Ada) - thanks to Google Translate. Examples of blocked DNS queries dig binance.com @182.253.45.122 ;; global options: +cmd ;; Got