-
Notifications
You must be signed in to change notification settings - Fork 1
/
inucode.py
executable file
·54 lines (47 loc) · 1.46 KB
/
inucode.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python3
# cython: language_level=3
# Inucode (c) Karim Vergnes <[email protected]>
# it's just a XOR cipher with exact-match policy.
# thx Joseph John
import os
import sys
def parallel(fun, ls):
try:
from p_tqdm import p_umap
return p_umap(fun, ls)
except:
import multiprocessing
return multiprocessing.Pool().map(fun, ls)
def repeated_key_xor(infile, outfile, key):
inf = open(infile, "rb+")
pt = inf.read()
len_key = len(key)
encoded = []
for i in range(0, len(pt)):
if pt[i] == key[i % len_key]:
encoded.append(pt[i])
continue
else:
encoded.append(pt[i] ^ key[i % len_key])
with open(outfile, "wb+") as out:
out.write(bytes(encoded))
inf.close()
mydir = os.path.dirname(sys.argv[0])
patchdir = os.path.join(mydir, "patches"
, "Data"
, "StreamingAssets"
, "scrpt.cpk"
)
outdir = os.path.join(mydir, "work"
, "Data"
, "StreamingAssets"
, "scrpt.cpk.contents"
)
patches = os.listdir(patchdir)
def patch_one_file(f):
repeated_key_xor( os.path.join(patchdir, f)
, os.path.join(outdir,os.path.splitext(f)[0])
, b'hogehoge66'
)
if __name__ == '__main__':
parallel(patch_one_file, patches)