ripgen icon indicating copy to clipboard operation
ripgen copied to clipboard

Rust-based high performance domain permutation generator.

Results 7 ripgen issues
Sort by recently updated
recently updated
newest added

DNSgen has an option (-f / --fast) to generate lower amount of domains with most probable words only. This is very useful when passing large number of subdomains to the...

``` error: there is no argument named `replaced_subdomain` --> /root/.cargo/registry/src/github.com-1ecc6299db9ec823/ripgen_lib-0.1.4/src/dnsgen/swap.rs:25:30 | 25 | format!("{replaced_subdomain}.{root_string}") | ^^^^^^^^^^^^^^^^^^^^ error: there is no argument named `root_string` --> /root/.cargo/registry/src/github.com-1ecc6299db9ec823/ripgen_lib-0.1.4/src/dnsgen/swap.rs:25:51 | 25 | format!("{replaced_subdomain}.{root_string}") |...

It would be useful to have an option to disable chaining words with: `crate::words::extract_words(domain_components.iter(), word_filter)` Perhaps adding a parameter `extract_custom: bool` to `RipgenManager::new()`.

Right now swap_words_transform only swaps words if `domain_components` contains words from the wordlist. There should probably be two different transforms: Input words: ``` staging dev ``` Input subdomains: ``` promo.staging.google.com...

Hi @d0nutptr It would be good if ripgen have a flag to skip number iterations so it depends on user to use it for the case. Thank you

Mentioning "0" would mean cargo would pick the latest dependency which is versioned "0.*" which would include versions incompatible with the one that this crate was written with and may...

hello, I am getting confused by the way ripgen generates permutations. 3 subdomains generated 23 permutations only. ``` # echo -e "forum.zonduu.me\nabc.zonduu.me\ntest.a.zonduu.me" | ripgen | wc -l 23 ``` ```...