mirror of
https://github.com/fail0verflow/hbc.git
synced 2024-11-04 17:15:13 +01:00
32 lines
617 B
Python
32 lines
617 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import sys, os, os.path
|
||
|
import pywii as wii
|
||
|
|
||
|
wii.loadkeys()
|
||
|
|
||
|
if len(sys.argv) != 4:
|
||
|
print "Usage:"
|
||
|
print " python %s <encrypted ISO> <partition number> <dol to inject>"%sys.argv[0]
|
||
|
sys.exit(1)
|
||
|
|
||
|
iso_name, partno, dol_name = sys.argv[1:4]
|
||
|
partno = int(partno)
|
||
|
|
||
|
doldata = open(dol_name, "rb").read()
|
||
|
|
||
|
disc = wii.WiiDisc(iso_name)
|
||
|
disc.showinfo()
|
||
|
part = wii.WiiCachedPartition(disc, partno, cachesize=32, debug=False)
|
||
|
partdata = wii.WiiPartitionData(part)
|
||
|
partdata.replacedol(doldata)
|
||
|
|
||
|
part.flush()
|
||
|
part.update()
|
||
|
part.tmd.null_signature()
|
||
|
part.tmd.brute_sha()
|
||
|
part.updatetmd()
|
||
|
part.showinfo()
|
||
|
|
||
|
|