├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── files ├── dnspod-top2000-sub-domains.txt ├── subdomain-list-1000k.txt ├── subdomain-list-6500k.txt ├── subdomains-list-top1000.txt └── useragent-list.txt ├── src ├── args.rs ├── dns_operations.rs ├── file_operations.rs ├── http_operations.rs ├── lib.rs ├── main.rs ├── report.rs └── session_manager.rs ├── subruster └── tests ├── test_args.rs ├── test_dns_operations.rs └── test_http_operations.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/README.md -------------------------------------------------------------------------------- /files/dnspod-top2000-sub-domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/files/dnspod-top2000-sub-domains.txt -------------------------------------------------------------------------------- /files/subdomain-list-1000k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/files/subdomain-list-1000k.txt -------------------------------------------------------------------------------- /files/subdomain-list-6500k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/files/subdomain-list-6500k.txt -------------------------------------------------------------------------------- /files/subdomains-list-top1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/files/subdomains-list-top1000.txt -------------------------------------------------------------------------------- /files/useragent-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/files/useragent-list.txt -------------------------------------------------------------------------------- /src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/src/args.rs -------------------------------------------------------------------------------- /src/dns_operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/src/dns_operations.rs -------------------------------------------------------------------------------- /src/file_operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/src/file_operations.rs -------------------------------------------------------------------------------- /src/http_operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/src/http_operations.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/report.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/src/report.rs -------------------------------------------------------------------------------- /src/session_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/src/session_manager.rs -------------------------------------------------------------------------------- /subruster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/subruster -------------------------------------------------------------------------------- /tests/test_args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/tests/test_args.rs -------------------------------------------------------------------------------- /tests/test_dns_operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/tests/test_dns_operations.rs -------------------------------------------------------------------------------- /tests/test_http_operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foreseon/Subruster/HEAD/tests/test_http_operations.rs --------------------------------------------------------------------------------