#decryption #openssl #hackthebox #gpp

gpp_decrypt

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

2 releases

0.1.1 Aug 8, 2021
0.1.0 Aug 7, 2021

#76 in #openssl

34 downloads per month

Custom license

6KB

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. If you're looking for the standalone binary version, see gpp-decrypt

Usage

extern crate gpp_decrypt;

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

Dependencies

~2–2.9MB
~63K SLoC