diff options
| author | awuctl | 2022-08-23 16:48:54 +0000 |
|---|---|---|
| committer | awuctl | 2022-08-23 16:48:54 +0000 |
| commit | 840fb76d797319ca0542dccc92a08feb1e9a8264 (patch) | |
| tree | a22723328b0a0de267898a86ac6dd55bd6f42b82 /README.md | |
| download | hwid-stuff-840fb76d797319ca0542dccc92a08feb1e9a8264.zip | |
initial commit
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..52c914b --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +# HWID Stuff + +Here are some basic example utilities for GenuineAuthorization tickets and HWID block blobs. + +If you'd like to learn more about the things those scripts work with, go to [massgravel/activation](https://github.com/massgravel/activation). + +# Info + +## `hwid_extract.py` + +This scripts extracts the HWID block blob from a GenuineAuthorization ticket into a file: + +```sh +# Writes to file +python hwid_extract.py GenuineTicket.xml hwid.bin + +# Writes to stdout +python hwid_extract.py GenuineTicket.xml +``` + +## `hwid_dec.c` + +This is a program that prints out all the individual fields in the HWID block blob. Build with `make`. + +```sh +hwid_dec hwid.bin +``` + +## `ticket_decode.py` + +This is a script that prints out meaningful individual fields in a ticket. + +```sh +python ticket_decode.py GenuineTicket.xml +```
\ No newline at end of file |
