Nov 25, 2025

Enumerate domain

https://github.com/skavngr/rapidscan/

--------------- 


# 1. Sublist3r (sudah ada) sublist3r -d zzz.ac.id -o subs_sublist3r.txt 

# 2. Amass amass enum -d zzz.ac.id -o subs_amass.txt 

# 3. Assetfinder assetfinder zzz.ac.id > subs_assetfinder.txt 

# 4. Subfinder subfinder -d zzz.ac.id -o subs_subfinder.txt 

# 5. Combine dan remove duplicate cat subs_*.txt | sort -u > subdomains_all.txt 

# Hitung total wc -l subdomains_all.txt


# Validasi subdomain yang aktif 

cat subdomains_all.txt | httpx > alive_subs.txt


# Scan nikto

mkdir -p results

while read sub; do

  echo "[+] Scanning: $sub"

  nikto -h "$sub" -o "results/nikto_$sub.html" -Format html

done < alive_subs.txt

----------------

SHODAN

https://help.shodan.io/command-line-interface/0-installation

--------------

gobuster dir -u https://domain.com -w wordlist.txt