Skip to content

Instantly share code, notes, and snippets.

@FaltoGH
FaltoGH / gdcrypt.py
Last active December 17, 2025 03:17
CCLocalLevels.dat Decrypt
import base64, zlib, re
def decrypt(filename):
with open(filename, 'rb') as rbf:
dat = rbf.read()
a = [x^11 for x in dat]
b = bytearray(a).decode()
c = b.replace('-','+').replace('_','/')