| Crates.io | gpp_decrypt |
| lib.rs | gpp_decrypt |
| version | 0.1.1 |
| created_at | 2021-08-07 23:48:40.513101+00 |
| updated_at | 2021-08-08 13:10:19.801481+00 |
| description | Decrypts the cpassword from Group Policy Preference files (Groups.xml) |
| homepage | https://github.com/RIckConsole/gpp_decrypt |
| repository | https://github.com/RIckConsole/gpp_decrypt |
| max_upload_size | |
| id | 432963 |
| size | 14,788 |
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
extern crate gpp_decrypt;
fn main() {
let enc = "YOUR_CPASSWORD_HERE".to_string();
let result = gpp_decrypt::gpp_decrypt(enc);
println!("{}", result);
}