#bug #bounty #security #recon #dnsgen

ripgen_lib

High-performance domain-name permutation generator

5 releases

0.1.4 Feb 13, 2022
0.1.3 Feb 8, 2022
0.1.2 Feb 8, 2022
0.1.1 Jan 24, 2022
0.1.0 Jan 24, 2022

#1325 in Algorithms

Download history 370/week @ 2023-11-23 375/week @ 2023-11-30 440/week @ 2023-12-07 454/week @ 2023-12-14 353/week @ 2023-12-21 346/week @ 2023-12-28 389/week @ 2024-01-04 401/week @ 2024-01-11 464/week @ 2024-01-18 330/week @ 2024-01-25 381/week @ 2024-02-01 429/week @ 2024-02-08 399/week @ 2024-02-15 428/week @ 2024-02-22 457/week @ 2024-02-29 294/week @ 2024-03-07

1,636 downloads per month
Used in ripgen

MIT license

24KB
433 lines

ripgen

A rust-based version of the popular dnsgen python utility.

ripgen is split into two main parts:

  • ripgen: A CLI utility that calls into ripgen_lib and uses dnsgen's transforms.
  • ripgen_lib: A library that allows you to create high performance permutations of domain names.

How to Install!

Installation of ripgen is very simple - follow the steps below.

Step 1 - rustup.rs

Visit https://rustup.rs/ and follow the instructions to get started with rust and cargo.

Step 2 - cargo install

Run cargo install ripgen

How to Use - ripgen

ripgen optionally takes a domain file, a wordlist file, and a minimum word length argument.

If no domain file is listed, domains are expected through stdin making it easy to pipe into from other tools.

e.g.

$ echo "www1.google.com" | ripgen

One deviation from dnsgen's behavior is that if no wordlist is specified then no wordlist items are included automatically. To compare ripgen and dnsgen appropriately you should make sure to specify a wordlist.

How to use - ripgen_lib

ripgen_lib exposes a RipGenManager struct that takes in three components:

  • an iterator for domain names
  • an iterator for wordlist entries
  • a function that converts &&str into bool for the purposes of filtering wordlist entries

After creating a RipGenManager, transforms can be added on with transform and chain_transform. These transforms require a function definition (closure or otherwise) be passed in that can take the &DomainComponent and WordListIterator types and return an Iterator<Item = String>.

Look at the non-default dnsgen transform implementations for examples on how these are implemented typically.

FAQ

linker 'cc' not found

If this happens, it means that you need to install some dependencies on your system to build ripgen. Here's how to fix that:

Debian (Ubuntu, Kali, WSL (you probably used Ubuntu))

sudo apt-get update
sudo apt install build-essential

Arch

sudo pacman -S base-devel

Centos

sudo yum install gcc

Dependencies

~2.9–4MB
~126K SLoC