blob: e16b33ecde390e7c2a97872658f2e641628030fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
NeuralDSP QuadCortex file decryptor.
Build the image:
```sh
docker build . -t qc_decrypt
```
To decrypt user files (pass the serial number found in `/etc/qc_sn` as command line argument):
```sh
docker run -v/path/to/your/files/:/data qc_decrypt QA00XXXXX /data/encrypted.json
```
To decrypt update files instead, provide an empty serial:
```sh
docker run -v/path/to/your/files/:/data qc_decrypt "" /data/encrypted.json
```
## License
This tool was made with ♥ by [Simone Margaritelli](https://www.evilsocket.net/) and it is released under the GPL 3 license.
|