- Fast decryption tool for Reverse: 1999 bundles written in Go that processes & decrypts
.dat
files located in thebundles
directory. - The decrypted files are then saved into a
decrypted_bundles
directory. It uses a basic XOR cipher for decryption, with the first byte of each file acting as the encryption key.
To use this tool, ensure that you have Go installed on your system. Then, follow these steps:
- Clone the repository or download the source code.
- Copy your
bundles
folder located at../StreamingAssets/Windows
to the root directory wheremain.go
is located. - Run the program with the command
go run main.go
.
The decrypted files will be available in the decrypted_bundles
directory.
Original Implementation: dromzeh
Go Rewrite: alluding