Crates.io | sub_crawler |
lib.rs | sub_crawler |
version | 1.0.2 |
source | src |
created_at | 2024-11-26 07:53:34.591135 |
updated_at | 2024-11-27 07:42:10.930809 |
description | A fast, flexible subdomain enumeration tool |
homepage | |
repository | https://github.com/sylar-my/sub_crawler/ |
max_upload_size | |
id | 1461300 |
size | 30,291 |
Sub_Crawler is a fast and flexible subdomain enumeration tool designed to help security researchers, penetration testers, and network administrators discover subdomains of a target domain quickly and efficiently.
git clone https://github.com/sylar-my/sub_crawler.git
cd sub_crawler
cargo build --release
cargo install --path .
Download the latest release from the Releases page.
sub_crawler example.com
# Use top 5000 wordlist with 20 threads
sub_crawler -w top5000 -t 20 example.com
# Use a custom wordlist
sub_crawler -w custom -c /path/to/custom_wordlist.txt example.com
light
: Default lightweight wordlisttop5000
: Top 5000 most common subdomain namestop20000
: Extended subdomain listtop110000
: Comprehensive subdomain collectioncustom
: User-provided custom wordlistSet the SecLists path:
export SECLISTS_PATH=/path/to/seclists
Option | Description | Default |
---|---|---|
-w, --wordlist |
Wordlist type | light |
--seclists-path |
Custom SecLists directory path | - |
-c, --custom-wordlist |
Path to custom wordlist | - |
-t, --threads |
Number of concurrent threads | 10 |
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Distributed under the MIT License. See LICENSE
for more information.
Project Link: https://github.com/sylar-my/sub_crawler