-
Notifications
You must be signed in to change notification settings - Fork 19
Connecting
RedDucks edited this page Mar 2, 2018
·
3 revisions
NOTE: PRETENDO IS CURRENTLY NOT READY FOR CASUAL USERS. ONLY DEVELOPERS AND OFFICIAL TESTERS SHOULD BE CONNECTING AT THIS STAGE OF DEVELOPMENT
- In Fiddler, open
Tools > Options
- In the
HTTPS
tab turn on HTTPS Connects - Enable HTTPS decrypting
- Ignore server certificate errors
- In the
Connections
tab tickAllow remote computers to connect
- Turn off
Act as system proxy on startup
- Back in the
HTTPS
tab clickActions > Export Root Certificate to Desktop
- Rename
FiddlerRoot.cer
toCACERT_NINTENDO_CA_G3.der
wherever you exported it to. - Go complete on of the console sections
- Open the
FiddlerScript
section of the Fiddler UI and find theOnBeforeRequest
method - At the end of the method, add:
// Change "account.nintendo.net" to whatever server you are replacing
if (oSession.HostnameIs("account.nintendo.net"))
{
if (oSession.HTTPMethodIs("CONNECT"))
{
// This is just a fake tunnel for CONNECT requests
oSession["x-replywithtunnel"] = "PretendoTunnel";
return;
}
oSession.fullUrl = "https://account.pretendo.cc" + oSession.PathAndQuery;
}
- Restart Fiddler to apply changes
Quick note, you will need Mocha installed on your WiiU. If you followed the guide all the way through, you will.
- Install FTPiiU_Everywhere (NOT THE REGULAR FTPiiU!)
- In your WiiU launch in to Mocha (redNAND or sysNAND, doesn't matter. Do which ever you want)
- Launch the Homebrew Launcher and startup FTPiiU_Everywhere
- Connect to the FTP server on your computer. On Windows, I use FileZilla. On Linux, I just use the
ftp
command. On MacOS, I use Finder. - Go to
/vol/storage_mlc01/sys/title/0005001b/10054000/content
- Enter
scerts
and replace theCACERT_NINTENDO_CA_G3.der
file there with theCACERT_NINTENDO_CA_G3.der
file we just made earlier from the FiddlerRoot.cer - Close the FTP connection on your computer and exit FTPiiU_Everywhere (press Home button)
- Reboot your console (DO NOT FORCE REBOOT (holding power button for 4 seconds)! REBOOT NORMALLY (only hold for 2 seconds)! FORCE REBOOTING CAN SOMETIMES ERASE CHANGES!)
- Go to the connection settings for your WiFi connection on your WiiU and turn on proxy connections
- Set the proxy server to your PC's IP, and the port to
8888
(unless you changed the Fiddler port) - Congratulations! You have now connected to Pretendo