Advertisement
xosski

Domain automation

Mar 21st, 2025
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.82 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # automation.sh (run as ./automation.sh target.com)
  4. # Enhanced subdomain enumeration script
  5.  
  6. # === CONFIGURATION ===
  7.  
  8. GREEN='\033[0;32m'
  9. RED='\033[0;31m'
  10. YELLOW='\033[1;33m'
  11. NC='\033[0m' # No Color
  12.  
  13. # === CHECK ARGS ===
  14.  
  15. if [ "$#" -ne 1 ]; then
  16. echo -e "${YELLOW}Usage: $0 target.com${NC}"
  17. exit 1
  18. fi
  19.  
  20. TARGET="$1"
  21. OUTPUT_DIR="${TARGET}_subdomains"
  22. mkdir -p "$OUTPUT_DIR"
  23.  
  24. # === DEPENDENCY CHECK ===
  25.  
  26. echo -e "${GREEN}[+] Checking dependencies...${NC}"
  27.  
  28. for cmd in curl jq subfinder sublist3r chaos; do
  29. if ! command -v $cmd &>/dev/null; then
  30. echo -e "${RED}[!] Missing dependency: $cmd${NC}"
  31. exit 1
  32. fi
  33. done
  34.  
  35. echo -e "${GREEN}[+] All required tools found.${NC}"
  36.  
  37. # === SET LOGGING ===
  38.  
  39. LOGFILE="$OUTPUT_DIR/enumeration.log"
  40. exec > >(tee -a "$LOGFILE") 2>&1
  41.  
  42. echo -e "${GREEN}[+] Results will be saved in $OUTPUT_DIR${NC}"
  43. echo -e "${YELLOW}[X] Exporting PDCP_API_KEY...${NC}"
  44. export PDCP_API_KEY=b235613b-dc7b-43ef-96cf-8c58e8b692b9
  45.  
  46. # === ENUMERATION START ===
  47.  
  48. echo -e "${GREEN}[*] Starting enumeration for $TARGET...${NC}"
  49.  
  50. # --- HackerTarget ---
  51. echo -e "${GREEN}[*] Hackertarget.com...${NC}"
  52. curl -s "https://api.hackertarget.com/hostsearch/?q=$TARGET" | cut -d, -f1 | sort -u > "$OUTPUT_DIR/hackertarget.txt"
  53. [ ! -s "$OUTPUT_DIR/hackertarget.txt" ] && echo -e "${RED}[!] No results from hackertarget.com${NC}"
  54.  
  55. # --- crt.sh ---
  56. echo -e "${GREEN}[*] crt.sh...${NC}"
  57. curl -s "https://crt.sh/?q=%25.$TARGET&output=json" | jq -r '.[] | .name_value' | sed 's/\*\.//g' | sort -u > "$OUTPUT_DIR/crtsh.txt"
  58. [ ! -s "$OUTPUT_DIR/crtsh.txt" ] && echo -e "${RED}[!] No results from crt.sh${NC}"
  59.  
  60. # --- rapiddns.io ---
  61. echo -e "${GREEN}[*] rapiddns.io...${NC}"
  62. curl -s "https://rapiddns.io/subdomain/$TARGET?full=1#result" | grep -e "<td>.*$TARGET</td>" | grep -oP '(?<=<td>)[^<]+' | sort -u > "$OUTPUT_DIR/rapiddnsio.txt"
  63. [ ! -s "$OUTPUT_DIR/rapiddnsio.txt" ] && echo -e "${RED}[!] No results from rapiddns.io${NC}"
  64.  
  65. # --- AlienVault ---
  66. echo -e "${GREEN}[*] AlienVault OTX...${NC}"
  67. curl -s "https://otx.alienvault.com/api/v1/indicators/domain/$TARGET/url_list?limit=100&page=1" | grep -o '"hostname": *"[^"]*' | sed 's/"hostname": "//' | sort -u > "$OUTPUT_DIR/alienvault.txt"
  68. [ ! -s "$OUTPUT_DIR/alienvault.txt" ] && echo -e "${RED}[!] No results from AlienVault${NC}"
  69.  
  70. # --- subdomain.center ---
  71. echo -e "${GREEN}[*] subdomain.center...${NC}"
  72. curl -s "https://api.subdomain.center/?domain=$TARGET" | jq -r '.[]' | sort -u > "$OUTPUT_DIR/subcenter.txt"
  73. [ ! -s "$OUTPUT_DIR/subcenter.txt" ] && echo -e "${RED}[!] No results from subdomain.center${NC}"
  74.  
  75. # --- subfinder ---
  76. echo -e "${GREEN}[*] Subfinder...${NC}"
  77. subfinder -d "$TARGET" -t 200 -silent -all -recursive -o "$OUTPUT_DIR/subfinder.txt" &
  78. PID1=$!
  79.  
  80. # --- sublist3r ---
  81. echo -e "${GREEN}[*] Sublist3r...${NC}"
  82. sublist3r -d "$TARGET" -t 20 -o "$OUTPUT_DIR/sublist3r.txt" &
  83. PID2=$!
  84.  
  85. # --- chaos ---
  86. echo -e "${GREEN}[*] Chaos...${NC}"
  87. chaos -d "$TARGET" -silent > "$OUTPUT_DIR/chaos.txt" &
  88. PID3=$!
  89.  
  90. # Wait for background processes
  91. wait $PID1 $PID2 $PID3
  92.  
  93. # === COMBINE RESULTS ===
  94.  
  95. echo -e "${YELLOW}[+] Combining all results...${NC}"
  96. cat "$OUTPUT_DIR"/*.txt | sort -u > "$OUTPUT_DIR/all_subdomains.txt"
  97.  
  98. echo -e "${GREEN}[+] Total unique subdomains: $(wc -l < "$OUTPUT_DIR/all_subdomains.txt")${NC}"
  99.  
  100. # === OPTIONAL: DNS RESOLUTION ===
  101.  
  102. if command -v dnsx &>/dev/null; then
  103. echo -e "${GREEN}[*] Resolving domains using dnsx...${NC}"
  104. dnsx -silent -l "$OUTPUT_DIR/all_subdomains.txt" -o "$OUTPUT_DIR/resolved.txt"
  105. echo -e "${GREEN}[+] Resolved subdomains: $(wc -l < "$OUTPUT_DIR/resolved.txt")${NC}"
  106. else
  107. echo -e "${YELLOW}[!] dnsx not installed — skipping resolution step.${NC}"
  108. fi
  109.  
  110. # === DONE ===
  111.  
  112. echo -e "${GREEN}[✓] Subdomain enumeration completed. Results saved in $OUTPUT_DIR${NC}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement