Hacking Wii U Hacking & Homebrew Discussion

Bug_Checker_

Well-Known Member
Member
Joined
Jun 10, 2006
Messages
950
Trophies
0
XP
664
Country
United States
mentioned @ 30c3 f0f talk by Marcan
CAFE2WII
The ARM Wii U Starbuck code that switches to vWii mode.
Contains interesting low-level code.
It doesn't have an IOS or kernel.It's just low level code it has all the modules it needs
Tells us what we have to undo.(to go from vWii mode to WiiU mode)

System control and security stuff MCP
MCP_HWSetAHBCompatMode
MCP_HWSetCompatMode
MCP_HWSetMEM1MapCompatMode
MCP_HWSetSysProt
C2W_LaunchWiiIOS
C2W_FinalizeCafe last thing that happens before WiiU mode
C2W_SetEspressoPLLConfigGPIO which is what persumably switches espresso freq multiplier espresso speed
change the fan speed and some other misc crap
 

gudenau

Largely ignored
Member
Joined
Jul 7, 2010
Messages
3,882
Trophies
2
Location
/dev/random
Website
www.gudenau.net
XP
5,378
Country
United States
I think it's considered polite to credit your sources :P


Yes, you're quite right, we've run into this problem. No app we've tested has SD access, so we can't access it despite the PPC Kernel exploit. That said, we haven't finished our IPC experiments, we've not yet successfully impresonated the system, which may have sufficient privilege.


Oops, thought I credited you. Sorry! :-/
 

rumblpak

Well-Known Member
Newcomer
Joined
Apr 12, 2007
Messages
53
Trophies
0
XP
242
Country
United States
Not to thread hijack but since I'm getting the update pop-up even with every ip and website properly blocked I thought I'd give a much safer option at this point. this will effectively block any data that is going out of the local network, which is what I want it to function as. I can still access a local webserver to run rop but without any of the nasty possibilities of getting any updates. You will need to edit the mac to your wiiu's mac and remove the # symbols for it to run. This of course requires a router that will run iptables, which is pretty much any router capable of openwrt, ddwrt, etc.

Code:
#iptables -I FORWARD -p ALL -m mac --mac-source 34:af:2c:**:**:** -j DROP
 
#iptables -I OUTPUT -p ALL -m mac --mac-source 34:af:2c:**:**:** -j DROP
 
  • Like
Reactions: zecoxao

NWPlayer123

Well-Known Member
Member
Joined
Feb 17, 2012
Messages
2,642
Trophies
0
Location
The Everfree Forest
XP
6,693
Country
United States
Not to thread hijack but since I'm getting the update pop-up even with every ip and website properly blocked I thought I'd give a much safer option at this point. this will effectively block any data that is going out of the local network, which is what I want it to function as. I can still access a local webserver to run rop but without any of the nasty possibilities of getting any updates. You will need to edit the mac to your wiiu's mac and remove the # symbols for it to run. This of course requires a router that will run iptables, which is pretty much any router capable of openwrt, ddwrt, etc.

Code:
#iptables -I FORWARD -p ALL -m mac --mac-source 34:af:2c:**:**:** -j DROP
 
#iptables -I OUTPUT -p ALL -m mac --mac-source 34:af:2c:**:**:** -j DROP

Yeah, I have literally every url Nintendo uses (*.wii.com, *.nintendo.net, *.akamaitechnologies.com, etc) blocked and yet I still get the update popup, so it has to be something on the local machine, nintendo stored some cookie or something that tells it to yell at you to update every time it does something. That's much more intuitive and straightforward for blocking though.
 
  • Like
Reactions: Huntereb

Huntereb

Well-Known Member
Member
Joined
Sep 1, 2013
Messages
3,234
Trophies
0
Website
lewd.pics
XP
2,446
Country
United States
Yeah, I have literally every url Nintendo uses (*.wii.com, *.nintendo.net, *.akamaitechnologies.com, etc) blocked and yet I still get the update popup, so it has to be something on the local machine, nintendo stored some cookie or something that tells it to yell at you to update every time it does something. That's much more intuitive and straightforward for blocking though.


Once you get it the first time, it's stored forever. Probably like the 3DS and Updates when you put it in sleep mode.
 

pelago

Member
Member
Joined
Feb 20, 2006
Messages
1,019
Trophies
0
XP
565
Country
Not to thread hijack but since I'm getting the update pop-up even with every ip and website properly blocked I thought I'd give a much safer option at this point. this will effectively block any data that is going out of the local network, which is what I want it to function as. I can still access a local webserver to run rop but without any of the nasty possibilities of getting any updates. You will need to edit the mac to your wiiu's mac and remove the # symbols for it to run. This of course requires a router that will run iptables, which is pretty much any router capable of openwrt, ddwrt, etc.

Code:
#iptables -I FORWARD -p ALL -m mac --mac-source 34:af:2c:**:**:** -j DROP
 
#iptables -I OUTPUT -p ALL -m mac --mac-source 34:af:2c:**:**:** -j DROP
Personally I would just give the Wii U a manual IP address (not using DHCP) in the same range as your LAN, but don't give it a default gateway, or give it a fake default gateway if you cannot leave it blank (e.g. set the default gateway to be the same as the IP address for the Wii U itself).

That way the Wii U can access your webserver on your LAN but cannot access the Internet, and you don't need to do anything fancy on your router.
 

celcodioc

Major A$$hole
Member
Joined
Nov 13, 2011
Messages
278
Trophies
0
XP
159
Country
I just finished an early version of my new WiiUExplorer program, which combines the previous small tools into one (and replaces them). It is able to display both uncompressed and Yaz0-compressed SARC files in a browser, and extract either individual files/folders or the entire archive. Writing support and other file formats will be added in the future.

https://www.dropbox.com/sh/tfg2nd6q809oqn3/AADWk3SgQEsqnvlbplcWOfv5a
 

filfat

CTO @ Nordcom Group Inc.
OP
Member
Joined
Nov 24, 2012
Messages
1,261
Trophies
1
Location
Gothenburg, Sweden
Website
www.sweetsideofsweden.com
XP
1,749
Country
Sweden
  • Like
Reactions: celcodioc

filfat

CTO @ Nordcom Group Inc.
OP
Member
Joined
Nov 24, 2012
Messages
1,261
Trophies
1
Location
Gothenburg, Sweden
Website
www.sweetsideofsweden.com
XP
1,749
Country
Sweden
I just finished an early version of my new WiiUExplorer program, which combines the previous small tools into one (and replaces them). It is able to display both uncompressed and Yaz0-compressed SARC files in a browser, and extract either individual files/folders or the entire archive. Writing support and other file formats will be added in the future.

https://www.dropbox.com/sh/tfg2nd6q809oqn3/AADWk3SgQEsqnvlbplcWOfv5a

wait a second... you use C#?
I... Think... I... I... Love You... :grog:

On a more serious note "Bra Gjort";)
 
  • Like
Reactions: celcodioc

DanT1983

Member
Newcomer
Joined
Aug 12, 2014
Messages
13
Trophies
0
Age
41
XP
51
Country
Mexico
Hehe, thanks both of you! :D

Thank you.

People like you give me the best hope to play my Japan bought games on my Wii U, as well as playing emulated SNES and N64 games (the games of my childhood).

I have unlimited access to the Japanese import market, having to go there multiple times/year for work, and not being able to play them is simply a slap in the face.
I never expected Nintendo to region lock, and that is the single GRAVEST travesty they are guilty of so far (IMHO, OFC).

The funny thing is if they removed region locking, I would happily update and ignore homebrew completely.

Honestly, why does a company region lock? If I buy games while in Japan, they still get my money. Why bother region locking? This really is pathetic.
 

loco365

Well-Known Member
Member
Joined
Sep 1, 2010
Messages
5,457
Trophies
0
XP
2,927
I just finished an early version of my new WiiUExplorer program, which combines the previous small tools into one (and replaces them). It is able to display both uncompressed and Yaz0-compressed SARC files in a browser, and extract either individual files/folders or the entire archive. Writing support and other file formats will be added in the future.

https://www.dropbox.com/sh/tfg2nd6q809oqn3/AADWk3SgQEsqnvlbplcWOfv5a

Chrome is blocking me from downloading the WiiUExplorer_v1.0.1.0.zip file, as it claims it's malicious. The AntiVirus isn't detecting it because I'm attempting to download it into a whitelisted area. I'll try building the source code.

Edit: Oh, that's not the source for this. Oops.
 

filfat

CTO @ Nordcom Group Inc.
OP
Member
Joined
Nov 24, 2012
Messages
1,261
Trophies
1
Location
Gothenburg, Sweden
Website
www.sweetsideofsweden.com
XP
1,749
Country
Sweden
Chrome is blocking me from downloading the WiiUExplorer_v1.0.1.0.zip file, as it claims it's malicious. The AntiVirus isn't detecting it because I'm attempting to download it into a whitelisted area. I'll try building the source code.

Edit: Oh, that's not the source for this. Oops.

otherwise click "Show Downloads" and then click "Restore File" ;)
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    Xdqwerty @ Xdqwerty: I'm back