├── README.md ├── install.sh └── maha.sh /README.md: -------------------------------------------------------------------------------- 1 | # maha 2 | 3 | installation: 4 | 1. chmod +x install.sh 5 | 2. ./install.sh 6 | 3. git clone https://github.com/rockybhai0516/maha 7 | 4. cd maha 8 | 5. chmod +x maha.sh 9 | Usage: 10 | ./maha.sh domain 11 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git clone https://github.com/projectdiscovery/httpx.git; cd httpx/cmd/httpx; go build; mv httpx /usr/local/bin/; httpx -version 4 | 5 | git clone https://github.com/projectdiscovery/nuclei.git; cd nuclei/v2/cmd/nuclei/; go build; mv nuclei /usr/local/bin/; nuclei -version 6 | 7 | nuclei -update-templates 8 | -------------------------------------------------------------------------------- /maha.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | if [ ! -d "$1" ]; then 5 | mkdir -p Recon/$1 6 | fi 7 | 8 | amass enum -passive -norecursive -noalts -d $1 -o Recon/$1/$1.txt 9 | cat Recon/$1/$1.txt | httpx -o Recon/$1/$1httpx.txt 10 | cat Recon/$1/$1httpx.txt | nuclei -t ~/nuclei-templates/ 11 | rm -fr Recon/$1/$1.txt 12 | --------------------------------------------------------------------------------