xosski

Email directory scanner/ logger

Mar 26th, 2025
4
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. MAILDIR="$HOME/Maildir"
  4. JSON_OUTPUT="$HOME/URL4RM.json"
  5. CSV_OUTPUT="$HOME/URL4RM.csv"
  6. TMP_FILE="$(mktemp)"
  7.  
  8. PATTERNS=("escapechan" "tor2web" "i2p" "onion" "darkweb" "dread")
  9.  
  10. # Clear previous output
  11. > "$TMP_FILE"
  12.  
  13. # Check for required tools
  14. if ! command -v urlscan &>/dev/null; then
  15. echo "urlscan not found. Please install it."
  16. exit 1
  17. fi
  18.  
  19. # Function to escape JSON strings
  20. escape_json() {
  21. echo "$1" | sed 's/\\/\\\\/g; s/"/\\"/g'
  22. }
  23.  
  24. # Process emails and extract URLs
  25. find "$MAILDIR" -type f | while read -r email_file; do
  26. timestamp=$(stat -c %y "$email_file" | cut -d'.' -f1)
  27. urlscan -n < "$email_file" 2>/dev/null | while read -r url; do
  28. clean_url=$(echo "$url" | sed 's/["><=]*$//')
  29.  
  30. if [[ "$clean_url" =~ [[:alnum:]\._%+-]+@[[:alnum:]\.-]+\.[[:alpha:]]{2,} ]]; then
  31. continue
  32. fi
  33.  
  34. for pattern in "${PATTERNS[@]}"; do
  35. if [[ "$clean_url" == *"$pattern"* ]]; then
  36. echo -e "$timestamp\t$email_file\t$clean_url\t$pattern" >> "$TMP_FILE"
  37. break
  38. fi
  39. done
  40. done
  41. done
  42.  
  43. # Deduplicate by URL
  44. awk -F'\t' '!seen[$3]++' "$TMP_FILE" > "${TMP_FILE}_dedup"
  45.  
  46. # Write CSV
  47. echo "timestamp,email_file,url,pattern" > "$CSV_OUTPUT"
  48. awk -F'\t' '{print "\"" $1 "\",\"" $2 "\",\"" $3 "\",\"" $4 "\""}' "${TMP_FILE}_dedup" >> "$CSV_OUTPUT"
  49.  
  50. # Write JSON
  51. echo "[" > "$JSON_OUTPUT"
  52. awk -F'\t' '
  53. BEGIN { first = 1 }
  54. {
  55. if (!first) { print "," } else { first = 0 }
  56. printf " {\n"
  57. printf " \"timestamp\": \"%s\",\n", $1
  58. printf " \"email_file\": \"%s\",\n", $2
  59. printf " \"url\": \"%s\",\n", $3
  60. printf " \"pattern\": \"%s\"\n", $4
  61. printf " }"
  62. }
  63. END { print "\n]" }
  64. ' "${TMP_FILE}_dedup" >> "$JSON_OUTPUT"
  65.  
  66. rm "$TMP_FILE" "${TMP_FILE}_dedup"
  67.  
  68. echo "JSON output: $JSON_OUTPUT"
  69. echo "CSV output: $CSV_OUTPUT"
Add Comment
Please, Sign In to add comment