├── .github └── workflows │ └── scan-actions.yaml ├── README.md ├── config └── subfinder-config.yaml ├── input └── domains.txt └── output ├── active_urls.txt ├── nuclei_output.txt └── passive_subdomains.txt /.github/workflows/scan-actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigstrong2021/automated-subdomain-takeover/HEAD/.github/workflows/scan-actions.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 自动化检测子域名劫持 by 303 from 火线Zone 2 | -------------------------------------------------------------------------------- /config/subfinder-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigstrong2021/automated-subdomain-takeover/HEAD/config/subfinder-config.yaml -------------------------------------------------------------------------------- /input/domains.txt: -------------------------------------------------------------------------------- 1 | huoxian.cn 2 | -------------------------------------------------------------------------------- /output/active_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigstrong2021/automated-subdomain-takeover/HEAD/output/active_urls.txt -------------------------------------------------------------------------------- /output/nuclei_output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/passive_subdomains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigstrong2021/automated-subdomain-takeover/HEAD/output/passive_subdomains.txt --------------------------------------------------------------------------------