keyhog-verifier 0.5.73

keyhog-verifier: parallel async credential verification framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use keyhog_verifier::testing::{TestApi, VerifierTestApi};
use std::collections::HashMap;

#[test]
fn interactsh_does_not_url_encode_host() {
    let c = TestApi.companions_with_oob(
        &HashMap::new(),
        "abc123def456ghi789jkl0mnopqrstuv1.oast.fun",
        "https://abc123def456ghi789jkl0mnopqrstuv1.oast.fun",
        "abc123def456ghi789jkl0mnopqrstuv1",
    );
    let out = TestApi.interpolate("host={{interactsh}}", "x", &c);
    assert!(out.contains("oast.fun"));
    assert!(!out.contains("%2E"));
}