Typewriter is a subdomain permutation tool written in Rust and heavily based on Gotator.
- Permutations with the
-
character! - Unlimited depth, limited only by your computer!
- Deduplication by default!
git clone https://github.com/projectmonke/typewriter && cd typewriter && cargo build --release && cp target/release/typewriter .
-i
specifies a single domain-w
specifies the wordlist of permutations (Six2dez'ssix.txt
is provided)-f
specifies the wordlist containing a list of subdomains to perform permutations on.-s
specifies that you are reading subdomain data from stdin.
-d
specifies the depth of the permutations (dev.test1.example.com is depth 2, and so on).-r
specifies the range that you want to try for subdomains with numbers (such as test1.example.com).
puredns is recommended for resolving subdomains.
./typewriter -w six.txt -i example.com -d 2 > results.txt
subfinder -d example.com | ./typewriter -w six.txt -s -r 5 -d 2
- Domain validation is not robust at all. Still fixing this.
- Flag for writing to an output file.
- Support for infinitely recursive permutation generation.
- More robust domain checks using an array of TLDs to validate the strings.