gpp_decrypt 0.1.0

Decrypts the cpassword from Group Policy Preference files (Groups.xml)
Documentation

gpp_decrypt

gpp_decrypt is a library for decrypting cpasswords in Group Policy Preference files. You'll find this useful for a certain hackthebox machine as well.

Usage

extern crate gpp_decrypt;

fn main() {
    let enc = "YOUR_CPASSWORD_HERE".to_string();
    let result = gpp_decrypt::gpp_decrypt(enc);
    println!("{}", result);
}