Geoffrey Frogeye
3b6f7a58b3
They changed their privacy / pricing model and as such I don't have access to their massive DNS dataset anymore, even after asking. Since 2022-01-02, I put the list on freeze while looking for an alternative, but couldn't find any. To make the list update again with the remaining DNS sources I have, I put the last version of the list generated with the Rapid7 dataset as an input for subdomains, that will now get resolved with MassDNS.
15 lines
218 B
Bash
Executable file
15 lines
218 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
|
|
./prune.sh
|
|
./export_lists.sh
|
|
./generate_index.py
|
|
|