ferrisetw 1.2.0

Basically a KrabsETW rip-off written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use rand::distributions::Alphanumeric;
use rand::{thread_rng, Rng};

pub fn rand_string() -> String {
    thread_rng()
        .sample_iter(&Alphanumeric)
        .take(10)
        .map(char::from)
        .collect()
}