Created
June 22, 2020 20:38
-
-
Save khanjanny/b59dac88b32b917b7d802a1d6deb1aca to your computer and use it in GitHub Desktop.
every time when you start your hunting on any project make a common structure it will be helpful for automation and easy access all data.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#This one is demo you can make your own stracture for yourself just add dir and file.... have fun | |
mkdir ~/work/$1 | |
mkdir ~/work/$1/finaldata | |
mkdir ~/work/$1/finaldata/portscan | |
mkdir ~/work/$1/domains | |
mkdir ~/work/$1/recondata | |
mkdir ~/work/$1/needcheck | |
touch ~/work/$1/finaldata/subdomains.txt | |
touch ~/work/$1/finaldata/subdomains_proved.txt | |
touch ~/work/$1/finaldata/fingerprint.txt | |
touch ~/work/$1/rootdomain | |
touch ~/work/$1/ips | |
touch ~/work/$1/subdomain |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment