Hacking SNEEK v2

OtakuGamerZ

Well-Known Member
Member
Joined
Feb 19, 2009
Messages
460
Trophies
0
Age
30
XP
258
Country
United States
T-Error said:
sorry *cough* thats why i said stupid question. and i think by "wiiscrubber" you're thinking of scrubbing IOS60 from a game, right? but i want to know where i can get the key.bin.
Wiiscrubber needs key.bin to work, but it comes with the keymaker.
 

cwstjdenobs

Sodomy non sapiens
Member
Joined
Mar 10, 2009
Messages
1,756
Trophies
0
Location
Ankh-Morpork
Website
Visit site
XP
205
Country
diazao said:
errorcc.jpg
That's all...
cry.gif

Tried Programmers Notepad with "mini-tree-mod" and "the file cannot be found". I do have devkitPPC, devkitARM and phyton.
The armboot.bin is the only missing thing... :s

You need to set up the mini toolchain using the buildtools from http://gitweb.bootmii.org/. You'll need a mingw/maybe cygwin install for it to work though. Probably someone who knows windows can help you there.
 

nIxx

Well-Known Member
Member
Joined
Sep 30, 2007
Messages
1,544
Trophies
0
Location
Germany
Website
Visit site
XP
337
Country
Gambia, The
Under Windows you will get problems while building the toolchain (you probably just need to change some stuff in the script) you better just use Linux.
Anyway anyone got "Output file is not an valid ELF!" while using ELFins ?
 

T-Error

Well-Known Member
Member
Joined
Oct 23, 2008
Messages
159
Trophies
0
XP
365
Country
Germany
ok so it doesnt have to be my own key? thought it might be relevant in the process. I'll use the key i found on the interwebs. Thx! DevkitPRO necessary? I know i should wait untill the complete guide is up.
 

XFlak

Wiitired but still kicking
Member
Joined
Sep 12, 2009
Messages
13,859
Trophies
3
Age
38
Location
Cyprus, originally from Toronto
Website
modmii.github.io
XP
9,884
Country
Cyprus
Det1re said:
Files:
  • SD:/
    • bootmii/
      • armboot.bin
      • bootmii.ini (autoboot set)
    • boot2.bin
just thought i would highlight that the bootmii.ini (autoboot set) has been added to the first post as a required file to have.
This is what stopped it from working for me last night (I just got a black screen), I'll try again later today.
 

giantpune

Well-Known Member
Member
Joined
Apr 10, 2009
Messages
2,860
Trophies
0
XP
213
Country
United States
you don't need the mini toolchain to make it. i did the whole thing with devkit in windows fine.

how are you doing this in linux? i cant get the exe files to run in wine. it bitches about some M$ dll.
 

cwstjdenobs

Sodomy non sapiens
Member
Joined
Mar 10, 2009
Messages
1,756
Trophies
0
Location
Ankh-Morpork
Website
Visit site
XP
205
Country
nIxx said:
Under Windows you will get problems while building the toolchain (you probably just need to change some stuff in the script) you better just use Linux.
Anyway anyone got "Output file is not an valid ELF!" while using ELFins ?

Use the module from your nand dump rather than NUSD, it doesn't seem to decrypt things anymore.
 

diazao

Well-Known Member
Newcomer
Joined
Apr 15, 2009
Messages
86
Trophies
1
Age
33
Location
RJ
Website
twitter.com
XP
446
Country
Brazil
nIxx said:
Under Windows you will get problems while building the toolchain (you probably just need to change some stuff in the script) you better just use Linux.
Anyway anyone got "Output file is not an valid ELF!" while using ELFins ?
Aw, things going out of my "try-to-code" knowns. Btw, armboot.bin cannot be uploaded here, just like esmodule and fsmodule?
 

RAVMN

Member
Newcomer
Joined
Aug 16, 2009
Messages
19
Trophies
1
XP
196
Country
Cote d'Ivoire
How can i skip that
QUOTE said:
C:\devkitPro\devkitPPC\apps\Sneek2r10>cd es && make && cd ../fs && make
&& cd ../mini-tree-mod && make && cp ./armboot.bin .././armboot.bin && cd
../ && ELFIns\elfins.exe es\esmodule.elf 0000000e.app step1.bin && ELFIns\el
fins.exe fs\iosmodule.elf step1.bin step2.bin && boot2me\Boot2Me.exe step2.bin
boot2.bin && rm ./step1.bin && rm ./step2.bin
make: `esmodule.elf' is up to date.
make: `iosmodule.elf' is up to date.
MAKEBIN armboot.bin
make: python: Command not found
make: *** [armboot.bin] Error 127

C:\devkitPro\devkitPPC\apps\Sneek2r10\mini-tree-mod>pause
Presione una tecla para continuar . . .
 

longtom1

Keep an eye on my posts cause I quick edit frequen
Member
Joined
Jan 12, 2009
Messages
2,641
Trophies
1
Location
Honey Oils inc.
Website
Visit site
XP
197
Country
giantpune said:
ok. heres a little skinny on getting this up and going. this assumes that you have devkitARM & python or the WIIDEV environment already set up.

first grab the 0000000e.app module from IOS60 v6147 and put it in the same folder as the sneek source code.
sneek1.png

then open a cmd window and point it to that folder and put this in it...

Code:
cd es && make && cd ../fs && make &&cd ../mini-tree-mod && make && cp ./armboot.bin .././armboot.bin && cd ../ && ELFIns\elfins.exe es\esmodule.elf 0000000e.app step1.bin && ELFIns\elfins.exe fs\iosmodule.elf step1.bin step2.bin && boot2me\Boot2Me.exe step2.bin boot2.bin && rm ./step1.bin && rm ./step2.bin
sneek2.png

this should leave you with a armboot.bin and a boot2.bin. put the boot2.bin on your sd root and the armboot.bin in the bootmii folder in the sd card. if you got the precompiled elf files from the google code page, you can skip the first part of this command but just make sure the path you enter for the args to the exe files match whatever you named the elf files.

also, i had to make 2 changes to the make to have it use my compiler. change starlet.mk to have this at the top
Code:
export WIIDEV=$(DEVKITARM)
ifeq ($(strip $(WIIDEV)),)
$(error "Set WIIDEV in your environment.")
endif

PREFIX = $(WIIDEV)/bin/arm-eabi-
it has 1 line added and the PREFIX line is now different. if you don't have python, it will throw an error, but crediar says that isn't important, so you can remove that from the makefile i guess.
Tried all this got it to compile the .elf files but won't compile the .bin files keep getting error

MAKEBIN armboot.bin
make: python: Command not found
make: *** [armboot.bin] Error 127

Have python installed
 

nIxx

Well-Known Member
Member
Joined
Sep 30, 2007
Messages
1,544
Trophies
0
Location
Germany
Website
Visit site
XP
337
Country
Gambia, The
In mini-tree-mod Makefile change
MAKEBIN = python makebin.py
to
MAKEBIN = /c/python26/python makebin.py (python26 is my python directory)
or add the path to the Windows system variables
 

dustin6908

Active Member
Newcomer
Joined
Sep 18, 2009
Messages
30
Trophies
0
XP
25
Country
United States
using ginapune guide

when i try to run

cd es && make && cd ../fs && make &&cd ../mini-tree-mod && make && cp ./armboot.bin .././armboot.bin && cd ../ && ELFIns\elfins.exe es\esmodule.elf 0000000e.app step1.bin && ELFIns\elfins.exe fs\iosmodule.elf step1.bin step2.bin && boot2me\Boot2Me.exe step2.bin boot2.bin && rm ./step1.bin && rm ./step2.bin

i get

Makefile:5: *** missing seperator. Stop.


any help?
 

diazao

Well-Known Member
Newcomer
Joined
Apr 15, 2009
Messages
86
Trophies
1
Age
33
Location
RJ
Website
twitter.com
XP
446
Country
Brazil
Ok, i got it compiled, thank you wilsoff
wink.gif

But now, black screen...
It's a simple FS dumper v0.42's dump (smallest dump)
Maybe corrupt/missing files?

edit: wilsoff, not wilsoft
tongue.gif
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
  • Jayro @ Jayro:
    The phat model had amazingly loud speakers tho.
    +1
  • SylverReZ @ SylverReZ:
    @Jayro, I don't see whats so special about the DS ML, its just a DS lite in a phat shell. At least the phat model had louder speakers, whereas the lite has a much better screen.
    +1
  • SylverReZ @ SylverReZ:
    They probably said "Hey, why not we combine the two together and make a 'new' DS to sell".
  • Veho @ Veho:
    It's a DS Lite in a slightly bigger DS Lite shell.
    +1
  • Veho @ Veho:
    It's not a Nintendo / iQue official product, it's a 3rd party custom.
    +1
  • Veho @ Veho:
    Nothing special about it other than it's more comfortable than the Lite
    for people with beefy hands.
    +1
  • Jayro @ Jayro:
    I have yaoi anime hands, very lorge but slender.
  • Jayro @ Jayro:
    I'm Slenderman.
  • Veho @ Veho:
    I have hands.
  • BakerMan @ BakerMan:
    imagine not having hands, cringe
    +1
  • AncientBoi @ AncientBoi:
    ESPECIALLY for things I do to myself :sad:.. :tpi::rofl2: Or others :shy::blush::evil:
    +1
  • The Real Jdbye @ The Real Jdbye:
    @SylverReZ if you could find a v5 DS ML you would have the best of both worlds since the v5 units had the same backlight brightness levels as the DS Lite unlockable with flashme
  • The Real Jdbye @ The Real Jdbye:
    but that's a long shot
  • The Real Jdbye @ The Real Jdbye:
    i think only the red mario kart edition phat was v5
  • BigOnYa @ BigOnYa:
    A woman with no arms and no legs was sitting on a beach. A man comes along and the woman says, "I've never been hugged before." So the man feels bad and hugs her. She says "Well i've also never been kissed before." So he gives her a kiss on the cheek. She says "Well I've also never been fucked before." So the man picks her up, and throws her in the ocean and says "Now you're fucked."
    +1
  • BakerMan @ BakerMan:
    lmao
  • BakerMan @ BakerMan:
    anyways, we need to re-normalize physical media

    if i didn't want my games to be permanent, then i'd rent them
    +1
  • BigOnYa @ BigOnYa:
    Agreed, that why I try to buy all my games on disc, Xbox anyways. Switch games (which I pirate tbh) don't matter much, I stay offline 24/7 anyways.
  • AncientBoi @ AncientBoi:
    I don't pirate them, I Use Them :mellow:. Like I do @BigOnYa 's couch :tpi::evil::rofl2:
    +1
  • cearp @ cearp:
    @BakerMan - you can still "own" digital media, arguably easier and better than physical since you can make copies and backups, as much as you like.

    The issue is DRM
  • cearp @ cearp:
    You can buy drm free games / music / ebooks, and if you keep backups of your data (like documents and family photos etc), then you shouldn't lose the game. but with a disk, your toddler could put it in the toaster and there goes your $60

    :rofl2:
  • cearp @ cearp:
    still, I agree physical media is nice to have. just pointing out the issue is drm
  • rqkaiju2 @ rqkaiju2:
    i like physical media because it actually feels like you own it. thats why i plan on burning music to cds
    rqkaiju2 @ rqkaiju2: i like physical media because it actually feels like you own it. thats why i plan on burning...