2 releases
0.1.1 | Aug 8, 2021 |
---|---|
0.1.0 | Aug 7, 2021 |
#11 in #decrypt
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–3MB
~66K SLoC