19 releases

0.6.3 Oct 13, 2023
0.6.1 Sep 30, 2023
0.5.2 Jul 30, 2023
0.4.2 Sep 27, 2022
0.3.1-beta Oct 27, 2020

#104 in Email

Download history 13/week @ 2024-02-23 11/week @ 2024-03-01 43/week @ 2024-03-29 1/week @ 2024-04-05 53/week @ 2024-04-12

97 downloads per month

MIT license

275KB
2K SLoC

Rust 1K SLoC // 0.0% comments Perl 578 SLoC // 0.0% comments INI 4 SLoC

Twistrs is a domain name permutation and enumeration library that is built on top of async Rust.

The library is designed to be fast, modular and easy-to-use for clients.

The two primary structs to look into are Domain and DomainMetadata.

Additionally the module documentation for permutation and enumeration provides more granular details on how each module may be used indepedently.

domain permutation and enrichment asynchronously.

Example

The following is a trivial example using Tokio mpsc.

use twistrs::enrich::DomainMetadata;
use twistrs::permutate::Domain;

use tokio::sync::mpsc;


#[tokio::main]
async fn main() {
    let domain = Domain::new("google.com").unwrap();
    let permutations = domain.addition();

    let (tx, mut rx) = mpsc::channel(1000);

    for permutation in permutations {
        let domain_metadata = DomainMetadata::new(permutation.domain.fqdn.clone());
        let mut tx = tx.clone();

        tokio::spawn(async move {
            if let Err(_) = tx.send((permutation.clone(), domain_metadata.dns_resolvable().await)).await {
                println!("received dropped");
                return;
            }

            drop(tx);
        });
    }

    drop(tx);

    while let Some(i) = rx.recv().await {
        println!("{:?}", i);
    }
}

Dependencies

~10–23MB
~357K SLoC