Homebrew How can I send you tickets?

  • Thread starter Thread starter Linkboy007
  • Start date Start date
  • Views Views 11,974
  • Replies Replies 108
  • Likes Likes 8
And why don't upload the encTitleKeys? Is it not legit? So it is faster upload one times the dec and the enc
Only the decrypted key can actually be verified as valid, so that's probably why the site requires decrypted keys, which are then verified and encrypted. Though it could do it the other way too, decrypt then verify, but this way invalid/trash keys can be automatically filtered out right away.
 
Last edited by The Real Jdbye,
  • Like
Reactions: Ryccardo
Only the decrypted key can actually be verified as valid, so that's probably why the site requires decrypted keys, which are then verified and encrypted. Though it could do it the other way too, decrypt then verify, but this way invalid/trash keys can be automatically filtered out before encrypted.
Makes Sense ^^
 
The site only accepts the decrypted title keys because the site needs them to verify that the Titlekey is good.
Once every few days, the site owner (I assume), downloads the New Decrypted Keys, Encrypts them and updates the site.
(edit: ninja'd)

Press the "Download only titles without encrypted title keys" button on the site to get only the new keys added since last update.
encrypt the downloaded "DecTitleKeys.bin" to "EncTitleKeys.bin" with decrypt9 with the Encrypt Titlekeys (File) option.

You can then use this python 2.7 script below to parse the "EncTitleKeys.bin" file to a readable text file.
(A comma seperates TitleID and Key)
The you can use something like FunKeyCIA to download the CIA using the TitleID and the encrypted key.
Code:
import struct
with open ("encTitleKeys.bin", 'rb') as enc:
    numkeys = struct.unpack("<LLLL", enc.read(0x10))
    with open("encTitleKeys.txt", "w") as out:
        print ("%d EncKeys") % (numkeys[0])
        out.write(str("%d EncKeys\n") % (numkeys[0]))
        for key in range (0, numkeys[0]):
            commonkeyindex = struct.unpack(">L", enc.read(0x04))
            junk = struct.unpack(">L", enc.read(0x04))
            titleid = struct.unpack(">Q", enc.read(0x08))
            enckey = struct.unpack(">QQ", enc.read(0x10))
            print ("%016X,%016X%016X") % (titleid[0], enckey[0], enckey[1])
            out.write(str("%016X,%016X%016X\n") % (titleid[0], enckey[0], enckey[1]))
 
  • Like
Reactions: Linkboy007
So I have a little to much money on my 3ds so I thought I help you to get European Tickets ^^ How can I send you them?

Edit:

So when the Keys are encryptet these Games will be avaiable for European Users:

Monster Hunter Generations
Tetris
Sonic and Sega All Stars Racing Transformed
Gunslugs
Gunslugs 2
Mega Man X2
Mega Man X3
more is coming later (: you can write me pm which Game I should buy
Wait do you need cfw for this!
 
isn't youkai watch already done, at least the usa one has a legit preinstalled ticket, maybe not eur.
 
although if you really want to share, maybe get some digitial only games that have not been dumped, i think game carts that can be converted to cia are low priority - but of course, still good to have.
 

Site & Scene News

Popular threads in this forum