summaryrefslogtreecommitdiff
path: root/README.md
blob: 4b3ac47f9d59bf73b45deaeb39518c576b80b02b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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) (if I updated it already).

# 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
```