Skip to content

Commit

Permalink
feat(civo) Add civo subdomains list
Browse files Browse the repository at this point in the history
  • Loading branch information
Moinh4v authored Dec 25, 2024
1 parent 1e28f15 commit 99bdc47
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions civo.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/bash

read -p "Enter Domain Name without http/https : " domain

#start finding subdomain

mkdir $domain
cd $domain

subfinder -d $domain -v -recursive -o all$domain.txt

cat all$domain.txt | httpx | tee -a $domain-alive.txt

while true;do cat $domain-alive.txt | nuclei -t ~/nuclei-templates/ | notify ; sleep 86400; done &

while true;do subfinder -dL all$domain.txt -all | anew all$domain-subs.txt | httpx | nuclei -t ~/nuclei-templates/ | notify ; sleep 172800; done &

0 comments on commit 99bdc47

Please sign in to comment.