Hacking Wii U Hacking & Homebrew Discussion

  • Thread starter Thread starter filfat
  • Start date Start date
  • Views Views 5,121,349
  • Replies Replies 21,104
  • Likes Likes 29
If you're constantly getting crashes, just wait for updates. As it has been said a million times before, it won't work 100% every single time.
 
  • Like
Reactions: Adr990
A whole new thread is a bit overkill, imo.
I think we should just stop trying for now. I'll mess around with it some more when I can test it with my own WiiU, which I hope will be soon. :)
Could your html structure cause the exploit to randomly work/not work? I see a lot of "non standard" html, maybe this could be an issue? For example; why use onclick handlers on div's to open the .html files of the exploit instead of just pointing to them with the standard a tag, that's default for linking? Also a lot of inline css etc, maybe this is a problem?

Not sure though and I do not want to attack you or anything, just wondering if it could be an issue!
 
Could your html structure cause the exploit to randomly work/not work? I see a lot of "non standard" html, maybe this could be an issue? For example; why use onclick handlers on div's to open the .html files of the exploit instead of just pointing to them with the standard a tag, that's default for linking?
In one of my tests I actually tried to just use <a href>, it didn't make a difference.
 
In one of my tests I actually tried to just use <a href>, it didn't make a difference.
Did you try a fully stripped down, non styled html file with standardized structure to rule this out? Maybe something like this as a test?

Code:
<!DOCTYPE html>
<html>
    <head>
        <title>WiiULib - Hombrew Browser</title>
        <meta charset="UTF-8">
    </head>
    <body>
       <div class="brewItem">
           <h1>Hello World</h1>
           <p>Shows you the text "Hello World!", to confirm this exploit is working on your WiiU!</p>
           <a href="http://wiiulib.arndroid.nl/brew/helloworld/index.html">Run this app</a>
       </div>
    </body>
</html>
 
Last edited by gitkua,
Did you try a fully stripped down, non styled html file with standardized structure to rule this out? Maybe something like this as a test?

-snip-
Thanks for helping out.

On test_5 I used <a href> around the <div>.
On test_9 I tried a stripped down html.

It really seems you need to start from a new tab, clean, but without any other tabs open?
 
Thanks for helping out.

On test_5 I used <a href> around the <div>.
On test_9 I tried a stripped down html.

It really seems you need to start from a new tab, clean, but without any other tabs open?
Nope, already tested with more than one tab opened and also opening the link from another page and both works.
The problem is in the page itself.
If it can help opening links from gbatemp pages sometimes hang the same way as in your menu page.
I m going to make more test and give you the results anyway.
 
Last edited by Lory171,
  • Like
Reactions: Adr990
Thanks for helping out.

On test_5 I used <a href> around the <div>.
On test_9 I tried a stripped down html.

It really seems you need to start from a new tab, clean, but without any other tabs open?

Wrapping an a tag around a div is not valid html as far as I'm aware. The test_9 should cause no problems, if it does, something else is at fault.
 
That's... wierd?
You get to the payload.html on test_12, right?

Also, has anyone tried test_11?
Or tested test_10 again, to confirm it is really not working for anyone else, but for bache?

Edit:
There is no one else with a remote host, that let's you select a homebrew/payload manually yet, like I have, that works?


www.gauntlethacks.me/Wiiu

i just set it up, i dont have anything other than a hello world but it loads the main page and redirects based on version, for 5.3.2 it will load Menu532.html which i just used a basic template for being able to click. from there you can click and load which homebrew you want, its very simple but it was just something i set up in a few mins so i could test the waters.

edit: loaded up usbstor on there now, you can select which homebrew you wish to launch now :)

edit 2 : pong seems to give me messed up graphics, but it is at least crashing still.
 
Last edited by shabbypenguin,
The kernel exploit grants access to USB or SD IO?

USB is probably accessible even from userspace, and I was working on that for a while. SD access can only be done from an app with those permissions, like Smash, but the kernel exploit can inject itself into Smash.
 
Here we are
I was using the exit.html from nwplayer123 to test and had problems with the bplaced.net server where the file is hosted, the connection was really slow and one time on three I got it hanging on the loading so

1) bad or slow connection can make the homebrew hang and freeze the browser

Making more tests with more tabs opened using exit.html and usbstor.html gave the following result

2) When using more than one tab, code seem to work only if all the others tab are empty (but with 6 white tabs it crash anyway). More tabs make the exploit not stable so use only one.

Testing with different user agents and settings

3)Code works with every user agent the same way
4) Clearing cookies doesn't seem to help in anyway
5) Sometime after many tests the console cannot find the network anymore and you have to reset it ( but maybe is just my shitty internet)

6) directly writing the link or using favourites seem to work in every occasion if you have only one tab opened, no matter what page you are visiting or visited before

7) to make links in pages to work they have to open the link in the same tab, not in a new tab (this is why opening links from gba temp doesn't work)

8) exit.html is much more stable than usbstor.html, and it also work in situations where the other fail (more tabs opened), maybe because it doesn't use OsFatal? (Tested both many many times)

www.gauntlethacks.me/Wiiu works fine with every example (sure pong crash but it load) so now we have an example that it s possible to load homebrew from a multi link page.


In Test_9 by Adr990 the first link work, the second open the link in another tab so it just freeze
Still haven't found the problem in the page wiiulib.arndroid.nl :sleep:

Also I got the console to freeze on the transition between the browser and the wii u menu, don t know if it s interesting
 
Last edited by Lory171,
Here we are
I was using the exit.html from nwplayer123 to test and had problems with the bplaced.net server where the file is hosted, the connection was really slow and one time on three I got it hanging on the loading so

1) bad or slow connection can make the homebrew hang and freeze the browser

Making more tests with more tabs opened using exit.html and usbstor.html gave the following result

2) When using more than one tab, code seem to work only if all the others tab are empty (but with 6 white tabs it crash anyway). More tabs make the exploit not stable so use only one.

Testing with different user agents and settings

3)Code works with every user agent the same way
4) Clearing cookies doesn't seem to help in anyway
5) Sometime after many tests the console cannot find the network anymore and you have to reset it ( but maybe is just my shitty internet)

6) directly writing the link or using favourites seem to work in every occasion if you have only one tab opened, no matter what page you are visiting or visited before

7) to make links in pages to work they have to open the link in the same tab, not in a new tab (this is why opening links from gba temp doesn't work)

8) exit.html is much more stable than usbstor.html, and it also work in situations where the other fail (more tabs opened), maybe because it doesn't use OsFatal? (Tested both many many times)

www.gauntlethacks.me/Wiiu works fine with every example (sure pong crash but it load) so now we have an example that it s possible to load homebrew from a multi link page.


In Test_9 by Adr990 the first link work, the second open the link in another tab so it just freeze
Still haven't found the problem in the page wiiulib.arndroid.nl :sleep:

Also I got the console to freeze on the transition between the browser and the wii u menu, don t know if it s interesting
This doesn't use OSFatal too. http://wj44.bplaced
 

Site & Scene News

Popular threads in this forum