gpp_decrypt

Crates.iogpp_decrypt
lib.rsgpp_decrypt
version0.1.1
created_at2021-08-07 23:48:40.513101+00
updated_at2021-08-08 13:10:19.801481+00
descriptionDecrypts the cpassword from Group Policy Preference files (Groups.xml)
homepagehttps://github.com/RIckConsole/gpp_decrypt
repositoryhttps://github.com/RIckConsole/gpp_decrypt
max_upload_size
id432963
size14,788
Rick Console (RIckConsole)

documentation

README

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);
}
Commit count: 0

cargo fmt