I created these tool specifically for the HacktheBox CTF platform. I once encountered a machine that took me a long time to find subdomains, as most of the tools I know, such as Sublist3r, didn't work on that machine.
This program is a tool for finding subdomains of the target domain. It uses a wordlist to search for the subdomains and lists the live subdomains of the target domain.
Default wordlist from:
https://github.com/danTaler/WordLists/blob/master/Subdomain.txt
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
What things you need to install the software and how to install them
import os, sys
import requests
import threading
from shutil import copyfile as cpf
from platform import system as my_system
from socket import gethostbyname as get_dom_ip
A step by step series of examples that tell you how to get a development env running
Say what the step will be
# Install the required modules
pip install os requests threading shutil platform socket