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.
In what could possibly be the worst way to start October for emulation enthusiasts, as of just a few minutes ago the Ryujinx repository appears to be down, with the...
The Legend of Zelda: Echoes of Wisdom has officially leaked online ahead of its 26th September street date.
TLOZ: Echoes of Wisdom marks the first time that a...
The Legend of Zelda: A Link to the Past is a standout game in the Zelda franchise, and one that many hold dear. With a remarkably open design for its time, paired...
A brand new system software update has been released. Nintendo has just put out a milestone firmware release for the Nintendo Switch, bringing the OFW to 19.0.0...
Images of what are supposedly a factory prototype for the Nintendo Switch 2 alongside a spec sheet have appeared on a Chinese forum.
The renders show the device from...
Late yesterday, Nintendo and The Pokemon Company filed a lawsuit against Pocketpair, the developer of the monster-collecting open-world game Palworld, alleging it...
When Palworld released into early access back in January of this year, it drew attention for its similarities to Pokemon. Some called into question whether or not the...
The little brother to Nintendo’s flagship hardware, the Switch Lite released in 2019 to positive reviews. With all the power of the full-sized console at a lower...
The next Zelda game is around the corner, and Nintendo is eager to show off more of The Legend of Zelda: Echoes of Wisdom ahead of the game's launch later this month...
A little under four years after its PC port, and PlayStation has delisted Horizon Zero Dawn. That's because Horizon Zero Dawn Remastered will soon take its place...
In what could possibly be the worst way to start October for emulation enthusiasts, as of just a few minutes ago the Ryujinx repository appears to be down, with the...
The Legend of Zelda: Echoes of Wisdom has officially leaked online ahead of its 26th September street date.
TLOZ: Echoes of Wisdom marks the first time that a...
Images of what are supposedly a factory prototype for the Nintendo Switch 2 alongside a spec sheet have appeared on a Chinese forum.
The renders show the device from...
A brand new system software update has been released. Nintendo has just put out a milestone firmware release for the Nintendo Switch, bringing the OFW to 19.0.0...
Late yesterday, Nintendo and The Pokemon Company filed a lawsuit against Pocketpair, the developer of the monster-collecting open-world game Palworld, alleging it...
A little under four years after its PC port, and PlayStation has delisted Horizon Zero Dawn. That's because Horizon Zero Dawn Remastered will soon take its place...
When Palworld released into early access back in January of this year, it drew attention for its similarities to Pokemon. Some called into question whether or not the...
The little brother to Nintendo’s flagship hardware, the Switch Lite released in 2019 to positive reviews. With all the power of the full-sized console at a lower...
Nintendo has been a company that tries to do its own thing compared to the rest of the industry. With the rise of generative AI in game development, many studios are...
If you tuned into the State of Play broadcast and were interested in playing the remastered release of Horizon Zero Dawn, you would have seen that you could purchase...