Hardware Wiiscrubber key.bin

Rice923

Well-Known Member
OP
Member
Joined
Mar 7, 2008
Messages
156
Trophies
0
XP
152
Country
United States
I can't seem to find a key.bin file anywhere. I've even downloaded a torrent that said it contained it, but ends up linking me to some site that tells me I need to pay $15 for something. I've also googled it, and all I've found were replies such as *google it*.

So bottom line, where can I get this key.bin file?
 

jan777

motion control..? srsly? so 2008. 3DS is teh bombz
Member
Joined
Jan 4, 2008
Messages
2,835
Trophies
1
Age
29
XP
878
Country
its illegal, contains copyrighted code,and the banhammer might haunt you
 

jan777

motion control..? srsly? so 2008. 3DS is teh bombz
Member
Joined
Jan 4, 2008
Messages
2,835
Trophies
1
Age
29
XP
878
Country
was the link the one that made my window enter the drunken state?
 

Rice923

Well-Known Member
OP
Member
Joined
Mar 7, 2008
Messages
156
Trophies
0
XP
152
Country
United States
Ok, I wasn't looking for an exact link to put someone else's account in danger. Thank you though for trying to help me out. Just a general point in the correct direction might be good.
 

Lazycus

Rotten
Member
Joined
Jul 22, 2006
Messages
871
Trophies
0
Website
Visit site
XP
169
Country
United States
You're not still deleting posts to the 'yum yum cakes' are you? Everyone loves them, you can hide the link behind some text, and most people still can't figure out where the key is when they get to the site. Oh well, I love yum yum cakes.
 
J

Jackreyes

Guest
Google it
tongue.gif
 

podunk1269

Well-Known Member
Member
Joined
Aug 26, 2007
Messages
406
Trophies
0
Age
41
Location
West ByGod , USA
Website
myspace.com
XP
171
Country
United States
I am not going to say where to get it, but I downloaded the trucha thingie for a torrent site and it was included. Nt going to link you or explain torrents, cause I'd say this is pushing bounds, but that is how i got it.
 

paul1991

Banned!
Banned
Joined
May 5, 2007
Messages
678
Trophies
0
XP
196
Country
United States
Every
Body
Eats
4 or
2
Apples,
2 is they dislike fruit
2 more if they like fruit
5 if they feel hungary
Excitingly
8 apples is the record
5 is hardly abnormal
9 is impossible
3 is frowned upon
Everyday
4 thousand,
4 hundred and
8
Dogs
9 thousand
Cats
5 thousand
4 hundred and
5 racoons
7million
3 thousand,
8 hundred and
1
Angry
Antelope
Find
7 ways to look at life



Incredibly LAME! I just belted it out. Hope it wont get deleted!
 

Dack

Well-Known Member
Member
Joined
Aug 26, 2007
Messages
601
Trophies
0
Location
UK
XP
98
Country
Things are looking up, or should that be down
wink.gif


I've been wondering about creating a little application that generates the required file after the user enters a number..... would it be worth it you think? The program would not contain the number itself but have a method of generating the correct value from a user supplied value (that would be displayed on the screen
smile.gif
)
 

Dack

Well-Known Member
Member
Joined
Aug 26, 2007
Messages
601
Trophies
0
Location
UK
XP
98
Country
Well try this one
smile.gif


http://www.megaupload.com/?d=DXX8E7GW

It is not the key.bin, it is software that creates it for you after manual intervention. The source code comes down to:

CODEÂÂÂÂunsigned char nSecretTable[16] = {0xC1, 0x0F, 0xCE, 0x08, 0x7C, 0xDB, 0x16, 0x77,
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ0xAC, 0x91, 0x1C, 0x80, 0x36, 0xF2, 0x2B, 0x5D};

ÂÂÂÂUpdateData(TRUE);

ÂÂÂÂ// now use the value as the seed for the file we are going to create
ÂÂÂÂunsigned char nValue = m_nSECRETVALUE;


ÂÂÂÂ// now open the file
ÂÂÂÂFILE * fOut;

ÂÂÂÂfOut = fopen("key.bin","wb");

ÂÂÂÂfor (int i=0; i < 16; i++)
ÂÂÂÂ{
ÂÂÂÂÂÂÂÂnValue = nValue ^ nSecretTable;
ÂÂÂÂÂÂÂÂfwrite(&nValue,1,1,fOut);
ÂÂÂÂ}
ÂÂÂÂfclose(fOut);

ÂÂÂÂAfxMessageBox("Generated a key.bin file");

Source code is at: http://www.megaupload.com/?d=YBKMQMLV
 

scholarlv

New Member
Newbie
Joined
Jul 28, 2008
Messages
1
Trophies
0
XP
1
Country
United States
Dack said:
Well try this one
smile.gif


http://www.megaupload.com/?d=DXX8E7GW

It is not the key.bin, it is software that creates it for you after manual intervention. The source code comes down to:

CODEÂÂÂÂunsigned char nSecretTable[16] = {0xC1, 0x0F, 0xCE, 0x08, 0x7C, 0xDB, 0x16, 0x77,
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ0xAC, 0x91, 0x1C, 0x80, 0x36, 0xF2, 0x2B, 0x5D};

ÂÂÂÂUpdateData(TRUE);

ÂÂÂÂ// now use the value as the seed for the file we are going to create
ÂÂÂÂunsigned char nValue = m_nSECRETVALUE;


ÂÂÂÂ// now open the file
ÂÂÂÂFILE * fOut;

ÂÂÂÂfOut = fopen("key.bin","wb");

ÂÂÂÂfor (int i=0; i < 16; i++)
ÂÂÂÂ{
ÂÂÂÂÂÂÂÂnValue = nValue ^ nSecretTable;
ÂÂÂÂÂÂÂÂfwrite(&nValue,1,1,fOut);
ÂÂÂÂ}
ÂÂÂÂfclose(fOut);

ÂÂÂÂAfxMessageBox("Generated a key.bin file");

Source code is at: http://www.megaupload.com/?d=YBKMQMLV


Dack you are the man!!!.. This little program loaded up into Visual Studio perfectly and I ran it.. Created key.bin just as expected.. Now all of the other tools work perfectly. Thank again.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
  • Materia_tofu @ Materia_tofu:
    im not a very bright individual, but we live and we learn
  • SylverReZ @ SylverReZ:
    @Materia_tofu, We do learn a lot from plenty of talented individuals.
  • Materia_tofu @ Materia_tofu:
    this is true! i learned how to make soundfont remixes from a friend back in 2021
    +1
  • BakerMan @ BakerMan:
    Update on my brother: He's home now, tired and hungry, obviously, but other than that, seems to be doing fine.
    +2
  • Veho @ Veho:
    That's a relief to hear. Do you know what happened?
  • SylverReZ @ SylverReZ:
    @BakerMan, Any idea what happened? I hope that your brother's doing good.
  • BakerMan @ BakerMan:
    Well, from what I've heard from my parents, he had a seizure last night, perhaps an epileptic episode, fucking died, had a near death experience, my dad called the paramedics, they showed up, took him to the hospital, and he woke up covered in tubes, and started complaining.
  • BakerMan @ BakerMan:
    He couldn't eat until after his MRI, when he had a bomb pop.
  • BakerMan @ BakerMan:
    What matters now is that he's doing alright.
  • Veho @ Veho:
    But you still don't know what it was?
  • Veho @ Veho:
    Has he had seizures before?
  • The Real Jdbye @ The Real Jdbye:
    apparently stress can cause seizures, my brother had one during a test once
  • The Real Jdbye @ The Real Jdbye:
    never had one before that, and never had one since
  • Redleviboy123 @ Redleviboy123:
    Question about game texture chanching Do i need an own game id?
  • The Real Jdbye @ The Real Jdbye:
    @Veho for those that want to
    experience being sonic the hedgehog
  • Veho @ Veho:
    Ah, you mean
    furries.
  • The Real Jdbye @ The Real Jdbye:
    well, sonic fans are a whole separate thing from furries
  • The Real Jdbye @ The Real Jdbye:
    like bronys
  • The Real Jdbye @ The Real Jdbye:
    sonic porn is too weird even for me
  • Dumpflam @ Dumpflam:
    bruh
  • Dumpflam @ Dumpflam:
    guys how do i delete a post
  • The Real Jdbye @ The Real Jdbye:
    you don't
  • The Real Jdbye @ The Real Jdbye:
    you can report it and request deletion
    The Real Jdbye @ The Real Jdbye: you can report it and request deletion