Open In App

Altdns – Subdomain discovery through alterations and permutations

Last Updated : 23 Aug, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Subdomain Enumeration is the non-negligible step of Penetration Testing. Every Tester has to Enumerate Subdomains for different phases. Several scripts are automated to find subdomains of the specified target, but Altdns is a superb security tool that can discover and explore subdomains. Altdns is a python script or python language-based tool. Altdns has the feature to generate permutation, alteration, and mutations of subdomains of the specified target domain. The Tester can use these generated names for DNS lookups. Altdns is an open-source tool and free to use. Altdns tool works efficiently in the phases of Information gathering, Reconnaissance subdomains, and finding subdomains from even HTTPS secured websites.  Altdns tool generates two lists of subdomains as a result. The 1st list is a collection of identified subdomains, and the 2nd list s the group of possible words used as a subdomain like testing, status backup, etc.

Note: Make Sure You have Python Installed on your System, as this is python-based tool. For more information, refer to the article Python Installation Steps on Linux

Installation of Altdns tool in Kali Linux

Step 1: Fire up your Kali Linux terminal and move to Desktop using the following command.

cd Desktop

Step 2: You are on Desktop, now create a new directory called Altdns using the following command. In this directory, we will complete the installation of the Altdns tool.

mkdir Altdns

Step 3: Now switch to Altdns directory using the following command.

cd Altdns/

Step 4: Now you have to install the tool. You have to clone the tool from GitHub.

git clone https://github.com/infosec-au/altdns

Step 5: The tool has been downloaded successfully in the Altdns directory. Now list out the contents of the tool by using the following command.

ls

Step 6: There is a new directory created named altdns. Move to that directory using the following command.

cd altdns/

Step 7: Once again to discover the contents of the tool, use the below command.

ls

Step 8: Install the essential requirements using the following command.

pip3 install -r requirements.txt

Step 9:  Check the help menu page of altdns tool to get a better understanding of the tool. Use the following command.

python3 altdns --help

Splitting the Usage Details

python 3 altdns -i target_subdomains.txt -o result_data_output -w possible_words.txt -r -s results_output.txt

  1. target_subdomains.txt – This file includes the list of subdomains of the organization
  2. result_data_output – This file will include the massive list of altered and permuted subdomains after the scan is completed.
  3. results_output.txt – This file will include the final list of permuted subdomains found that are valid and have a DNS record.
  4. possible_words.txt – This is the by default file in the altdns directory, which includes the dataset of words you’d like to permute your current subdomains.
  5. -r flag – This flag resolves every generated, permuted subdomain
  6. -s flag – This flag helps altdns in saving the results of the resolved permuted subdomains. results_output.txt will contain a final list of altered subdomains found that are valid and have a DNS record.
  7. -t flag – This flag limit the threads the resolver will use parallelly.
  8. -d flag – This flag revokes the system default DNS resolver and will use the specified IP address as the resolving server.

Working with Altdns Tool

Example 1: Generate a list of altered subdomains & resolve them

python3 altdns -i subdomains.txt -o data_output -w words.txt -r -s results_output.txt

1. In the below Screenshot (Fig 1), we have created a list of geeksforgeeks.org domain’s subdomain. The list is saved in the subdomains.txt. This file will be used to find the permutations and alterations in subdomains.

2. In the below Screenshot, this is the file which consists of permutations words. This data set has more than 200+ permuted words. You can specify your own wordlist using -w flag.

3. In the below Screenshot, our actual resolving process is started in which the data_output.txt file will contain the massive list of altered and permuted subdomains after the scan is over and the results_output.txt file will contain the final list of permuted subdomains found that are valid and have a DNS record.

4. In the below Screenshot, there are contents of data_output.txt file which consists of the massive list of altered and permuted subdomains.

5. In the below Screenshot, there are contents of results_output.txt file which consists of the final list of permuted subdomains found that are valid and have a DNS record.

Example 2 : Using Thread Flag 

python3 altdns -i subdomains.txt -o data_output -w words.txt -r -s results_output.txt -t 20

In the below Screenshot, the thread value is provided using the -t flag which is used to limit the threads the resolver will use parallelly.

Using the Altdns tool you can easily Generate permutations, alterations, and mutations of subdomains and then resolves them.



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads