Open In App

CTFR – Get Subdomain in Kali Linux

Last Updated : 06 Jun, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

CTFR is a free and open-source tool available on GitHub. This tool is free, which means you can download and use this tool for free of cost.  CTFR is used for reconnaissance of subdomains, information gathering of the target, finding subdomains from an HTTPS website. Usually what happens is that it becomes very difficult for a security researcher to find subdomains from an HTTPS website or web application, and this tool helps to get subdomains from all HTTPS websites. 

 ctfr tool is written in python, so you must have python installed in your Kali Linux in order to use this tool. This tool comes with an awesome user interface. 

ctfr tool

Features and uses of ctfr:

  • ctfr is a free and open-source tool available on GitHub.
  • ctfr is written in  Python .
  • ctfr tool is used for reconnaissance of subdomains of HTTPS websites.
  • ctfr tool is used for information gathering.
  • ctfr tool is used to find subdomains of the target.

Installation and step by step tutorial of ctfr:

Step1:

To install the tool, first move to the desktop and then install the tool using the following commands.

cd Desktop

git clone https://github.com/UnaPibaGeek/ctfr.git

Step 2:

The tool has been downloaded onto your machine. Now move to the directory of the tool and use the following command to install requirements.

cd ctfr

pip3 install -r requirements.txt

Step 3:

Now all the requirements have been downloaded. To run the tool, use the following command.

python3 ctfr.py

This is ctfr tool. Now we will see how to use this tool with examples.

Example :

 Use ctfr tool to find subdomains of a HTTPS website which is geeksforgeeks.org

python3 ctfr.py -d geeksforgeeks.org

We have run the command to scan for geeksforgeeks.org.

You can see the tool has given us so many subdomains of geeksforgeeks.org. This is how you can also scan the website of your domain. 


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

Similar Reads