15 lines
217 B
Bash
Executable file
15 lines
217 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Main script for eulaurarien
|
|
|
|
[ ! -f .env ] && touch .env
|
|
|
|
./fetch_resources.sh
|
|
./collect_subdomains.sh
|
|
./import_rules.sh
|
|
./resolve_subdomains.sh
|
|
./import_rapid7.sh
|
|
./prune.sh
|
|
./export_lists.sh
|
|
|