Awesome work. I got a question about a game. Resident Evi Revelations 1 & 2 stopped working for me. When I check the tickets on DBI, it says "personalized". The games just don´t open, immediate error shows up. I have asked on noob paradise, made a thread and until now, nothing. Could you help me? I have no idea what "personalized" means. Thank you once again for your work!
Awesome work. I got a question about a game. Resident Evi Revelations 1 & 2 stopped working for me. When I check the tickets on DBI, it says "personalized". The games just don´t open, immediate error shows up. I have asked on noob paradise, made a thread and until now, nothing. Could you help me? I have no idea what "personalized" means. Thank you once again for your work!
// try to fix a temp ticket and change it t a permanent one
//ECDSA SHA256
if (tikBuf.get()[0x0] == 0x5 && tikBuf.get()[0x1C6] == 0x10)
{
tikBuf.get()[0x1C6] = 0x0;
}
//RSA_2048 SHA256
else if (tikBuf.get()[0x0] == 0x4 && tikBuf.get()[0x286] == 0x10)
{
tikBuf.get()[0x286] = 0x0;
}
//RSA_4096 SHA256
else if (tikBuf.get()[0x0] == 0x3 && tikBuf.get()[0x386] == 0x10)
{
tikBuf.get()[0x386] = 0x0;
}
//ECDSA SHA1
else if (tikBuf.get()[0x0] == 0x2 && tikBuf.get()[0x1C6] == 0x10)
{
tikBuf.get()[0x1C6] = 0x0;
}
//RSA_2048 SHA1
else if (tikBuf.get()[0x0] == 0x1 && tikBuf.get()[0x286] == 0x10)
{
tikBuf.get()[0x286] = 0x0;
}
//RSA_4096 SHA1
else if (tikBuf.get()[0x0] == 0x0 && tikBuf.get()[0x386] == 0x10)
{
tikBuf.get()[0x386] = 0x0;
}
//
It patches that bitfield addess to be 0x0 (perm) if it finds 0x10 (temp) which seems to work fine for me, all the nsp files I tried have this Sig Method = RSA_2048 SHA256, do you know of what specific NSP files differ so I can check the extra code to fix these if I put the wrong address?, I can't seem to find other NSP files to check with though which have the different type sigs.
For those that want to test tinwoo with the above mods, this should hopefully fix your temp tickets to make them permanent when you install, then you can dump the installed nsp with whatever app you use to dump with and your new dump should be fixed.
// try to fix a temp ticket and change it t a permanent one
//ECDSA SHA256
if (tikBuf.get()[0x0] == 0x5 && tikBuf.get()[0x1C6] == 0x10)
{
tikBuf.get()[0x1C6] = 0x0;
}
//RSA_2048 SHA256
else if (tikBuf.get()[0x0] == 0x4 && tikBuf.get()[0x286] == 0x10)
{
tikBuf.get()[0x286] = 0x0;
}
//RSA_4096 SHA256
else if (tikBuf.get()[0x0] == 0x3 && tikBuf.get()[0x386] == 0x10)
{
tikBuf.get()[0x386] = 0x0;
}
//ECDSA SHA1
else if (tikBuf.get()[0x0] == 0x2 && tikBuf.get()[0x1C6] == 0x10)
{
tikBuf.get()[0x1C6] = 0x0;
}
//RSA_2048 SHA1
else if (tikBuf.get()[0x0] == 0x1 && tikBuf.get()[0x286] == 0x10)
{
tikBuf.get()[0x286] = 0x0;
}
//RSA_4096 SHA1
else if (tikBuf.get()[0x0] == 0x0 && tikBuf.get()[0x386] == 0x10)
{
tikBuf.get()[0x386] = 0x0;
}
//
It patches that bitfield addess to be 0x0 (perm) if it finds 0x10 (temp) which seems to work fine for me, all the nsp files I tried have this Sig Method = RSA_2048 SHA256, do you know of what specific NSP files differ so I can check the extra code to fix these if I put the wrong address?, I can't seem to find other NSP files to check with though which have the different type sigs.
For those that want to test tinwoo with the above mods, this should hopefully fix your temp tickets to make them permanent when you install, then you can dump the installed nsp with whatever app you use to dump with and your new dump should be fixed.
This installer fixes the ticket issue with Rainbow Skies,at least!
Just deleted my old copy,reinstalled with your installer,started the game:it worked.
Quit the game,rebooted the system:it still works+the ticket is still there/has become permanent.
Great work and thank you!
This installer fixes the ticket issue with Rainbow Skies,at least!
Just deleted my old copy,reinstalled with your installer,started the game:it worked.
Quit the game,rebooted the system:it still works+the ticket is still there/has become permanent.
Great work and thank you!
No worries, I just reuploaded the installer to also fix the bad dumps ticket masterkey back to 0x10, so if you use that to reinstall your game the masterkey should also be fixed.
Also added an option to the settings page to convert the temp tickets during install if you want to do this.
This installer fixes the ticket issue with Rainbow Skies,at least!
Just deleted my old copy,reinstalled with your installer,started the game:it worked.
Quit the game,rebooted the system:it still works+the ticket is still there/has become permanent.
Great work and thank you!
I thought these tickets were from people dumping games from a shared Switch account and not the primary account? As in, when the primary buys a game and the other a local Switch users on that device can play the game.
I must be missing something, the page I found shows the ticket size to be 0x2C0, and the offset for the license to be at 0x144. I find that wiki to be confusing with the addresses as I am using windows and the endianness on that page is for linux if I am honest and it doesn't tell you all the different license types on it.
All the tickets I checked have the license type in the same place, for the game nsp files. I'll do some more checking though. Thanks for your help though.
not speculation, mate. take 5 seconds and check for yourself.
download NSPs wherever online, and then check the tickets. _a lot_ of NSPs for some reason have the master key revision byte at the license type offset instead.
as said, this never mattered in the past because master key revision in the ticket doesnt actually do anything, and all the previous license types didn't affect functionality. until now where we're getting into the temporary ticket license types which do affect functionality.
you know, I would have expected you of all people to understand this. you're normally a lot more knowledgeable about how switch stuff works.
Here is one example from 2020 (rune factory 4 special dlc), I'm sure you can find more on your own
not speculation, mate. take 5 seconds and check for yourself.
download NSPs wherever online, and then check the tickets. _a lot_ of NSPs for some reason have the master key revision byte at the license type offset instead.
as said, this never mattered in the past because master key revision in the ticket doesnt actually do anything, and all the previous license types didn't affect functionality. until now where we're getting into the temporary ticket license types which do affect functionality.
you know, I would have expected you of all people to understand this. you're normally a lot more knowledgeable about how switch stuff works.
It doesn't matter, it's fixed in tinwoo and dbi now (I'm not sure about others) so when you install with a temp ticket it converts it automatically into a permanent ticket.
It doesn't matter, it's fixed in tinwoo and dbi now (I'm not sure about others) so when you install with a temp ticket it converts it automatically into a permanent ticket.
Seemingly out of nowhere a PC port for Pokemon Platinum has surfaced online, bundled alongside the source code for those interested in building and developing it for...
With very little in the way of announcement, Valve has today increased the price of the Steam Deck but some fairly considerable margins. Both of the available models...
Nintendo's expected Summer showcase is here, offering up plenty of new announcements and exciting reveals. Let's see what they have in store in the latest Nintendo...
Continuing with the great news of Pokémon Platinum getting a native unofficial PC port just a few days ago, today, yet another classic title from the franchise has...
The latest in a growing number of native PC ports, Paper Mario ReCut got its first pre-release build earlier this week. Based on the N64 recompilation toolchain, the...
When you talk about 3DS emulation, most people would jump to Citra. As the defacto choice since its first release it's seen tremendous success, and even after its...
What once seemed like a far off dream, and after many, many community restarts throughout the years, the elusive Mother 1 / EarthBound Beginnings Remake, which is a...
A whole hour of PlayStation content is on the way, thanks to the latest State of Play showcase. Headlining the stream will be Marvel's Wolverine, alongside a...
For the first time in 13 years, the Call of Duty series will again return to Nintendo's consoles. Set to launch on the 23rd of October, the latest release, Modern...
Back in April we covered the ROM hacking efforts to add fifth-generation animated sprites to third generation Pokemon games. It remains a thoroughly impressive...
With very little in the way of announcement, Valve has today increased the price of the Steam Deck but some fairly considerable margins. Both of the available models...
Nintendo's expected Summer showcase is here, offering up plenty of new announcements and exciting reveals. Let's see what they have in store in the latest Nintendo...
Seemingly out of nowhere a PC port for Pokemon Platinum has surfaced online, bundled alongside the source code for those interested in building and developing it for...
With rumours circulating about a Nintendo Direct in the coming days and weeks, fans are left speculating and hoping as to what might be included. At the centre of all...
The latest in a growing number of native PC ports, Paper Mario ReCut got its first pre-release build earlier this week. Based on the N64 recompilation toolchain, the...
A whole hour of PlayStation content is on the way, thanks to the latest State of Play showcase. Headlining the stream will be Marvel's Wolverine, alongside a...
After much speculation and rumour, the fabled Nintendo Direct is upon us. Set to go live tomorrow, the 9th of June, at 3pm in the UK, it'll feature 50 minutes of...
For the first time in 13 years, the Call of Duty series will again return to Nintendo's consoles. Set to launch on the 23rd of October, the latest release, Modern...
Following an investigation over misleading commercial practices, today Nintendo has been imposed a fine of 35 million euros related to the controller malfunctions...
Continuing with the great news of Pokémon Platinum getting a native unofficial PC port just a few days ago, today, yet another classic title from the franchise has...