mirror of
https://github.com/fail0verflow/hbc.git
synced 2024-11-04 17:15:13 +01:00
21 lines
372 B
Python
21 lines
372 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import sys, os, os.path
|
||
|
import pywii as wii
|
||
|
|
||
|
def hexdump(s):
|
||
|
return ' '.join(map(lambda x: "%02x"%x,map(ord,s)))
|
||
|
|
||
|
isofile = sys.argv[1]
|
||
|
disc = WiiDisc(isofile)
|
||
|
disc.showinfo()
|
||
|
part = WiiPartition(disc,int(sys.argv[2]))
|
||
|
part.showinfo()
|
||
|
|
||
|
part.tmd.update_signature(file("signthree.bin").read())
|
||
|
part.tmd.brute_sha()
|
||
|
part.updatetmd()
|
||
|
|
||
|
part.showinfo()
|
||
|
|