mirror of
https://github.com/fail0verflow/hbc.git
synced 2024-11-04 17:15:13 +01:00
18 lines
291 B
Python
18 lines
291 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import sys, os, os.path
|
||
|
import pywii as wii
|
||
|
|
||
|
wii.loadkeys()
|
||
|
|
||
|
tikfile = sys.argv[1]
|
||
|
print "fixing Tik file %s " % tikfile
|
||
|
tik = wii.WiiTik(open(tikfile, "rb").read())
|
||
|
tik.null_signature()
|
||
|
tik.brute_sha()
|
||
|
tik.update()
|
||
|
f = open(tikfile,"wb")
|
||
|
f.write(tik.data)
|
||
|
f.close()
|
||
|
|