I-Appliance BBS
The Official Source for Internet Appliance Upgrades and Mods
Amazon Honor System Click Here to Pay Learn More
BBS Main List | Sign In | Sign Up | Search | Help | Linux-Hacker.netReply to Thread | Printer |

Home / Other I-Appliances / Virgin Webplayer
Keygenerator for setupscreen : It's cracked !!!
Keygenerator for setupscreen : It's cracked !!!

New MessageKeygenerator for setupscreen : It's cracked !!! (modified 0 times) XenTriC
Profile
here it is for all of you...
Note, some numbers will cause an overflow in the generator but it works for allmost all
numbers. There are 3 faulty pairs in the big thread which all seem typos.
So give it a try !
Source in TurboPascal and C is included as is the executable.

Special thanks go out to Luc Kumps from Belgium who figured out the method !

Download here:
http://users.raketnet.nl/dunix/wpcrack.zip

11-16-2000 12:47:18

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) maldoror
Profile
Awesome. Thanks XenTriC!
11-16-2000 15:07:06

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) XenTriC
Profile
hey Maldoror,

since you're one of the first to try my generator, can you tell me if it works !?
I don't have a webplayer so my crack depended on known pairs that were submitted by
lots of people on this board and I have no way to check if it's actually working...

k, goodluck

11-16-2000 15:25:03

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) brown234
Profile
it worked for me! thanks.
11-16-2000 15:29:17

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) Turbo3
Profile
This pair did not work. 6944 -> 4577

Great job. This is the only one so far that did not work.

11-16-2000 15:35:13

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) Randy
Profile
I used XenTriC's great program to make the list posted below. Thanks, XenTriC!

Randy

11-16-2000 15:37:03

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) maldoror
Profile
Yes, it works...on the third try though. Some of the keys don't work but hey it got me in within 3 minutes. Good enough for me. :)
11-16-2000 15:49:24

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) XenTriC
Profile
Just for perfecting the generator,
Can all of you submit numbers that didn't work with the keygen ?

So I only need the keys that produced a wrong pass !

11-16-2000 16:09:19

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) Randy
Profile
I'm testing a few on the list, and I've found that it hits about 1 out of 3 tries. Sorry, Xentric, I didn't see your request before I started trying. I'll note for you a few in the next day or so that won't work.

Randy

11-16-2000 16:25:35

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) Turbo3
Profile
Four more bad ones.
6254 -> 3755
7275 -> 4774
6935 ->4530
4939 -> 2438
11-16-2000 17:14:37

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) moose_hacker
Profile | Email
Thanks XenTriC.

Here is a pair that did not work for me : key 4681, pass 2184.

11-16-2000 17:24:03

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) moose_hacker
Profile | Email
A few more bad ones.

5909 -> 3508
6280 -> 3913
4350 -> 1819
8017 -> 5488
7839 -> 5434
4182 -> 1651
4923 -> 2518
7722 -> 5351

11-16-2000 17:52:48

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) XenTriC
Profile
please try (pass+1), (pass-1),(pass+2),(pass-2),(pass-4),(pass+4),(pass-8) and (pass+8) when pass appears
to be incorrect... And post the correct password when one of these work !

I only need a couple of incorrectly generated pairs with their correct pass...
Preferably also within 4000-8000 range !

11-17-2000 05:17:52

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) Randy
Profile
Xentric, it's not possible to try more than 4 password attempts with a single key. After the fourth unsuccessful attempt, you are thrown back to the signon screen, and you're then forced to press CTRL-MUSIC again to get a new key.

Randy

11-17-2000 06:25:07

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) jwolfx
Profile
I think there's a typo in one of the source:

C: if k1>=10 then calc:=calc+1;
Pascal: if (k1 >= 10) calc |= 1;

Unless, calc is guaranteed to an even number I guess...

11-17-2000 10:57:34

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) XenTriC
Profile
You're almost right !

It's not a typo but a mistake in conversion by me... The executable is in Pascal
but I had to covert it from C to Pascal because I don't have a C compiler.
That's where I made a mistake !

In C: if (k1 >= 10) calc |= 1; <- this sets the Least Significant Bit of calc to 1
In Pascal: if k1>=10 then calc:=calc+1; <- wrong ! should to be :
if (k1>=10) and (k1 mod 2 = 0) then calc:=calc+1;

I checked it a minute ago and it generates wrong passes when I change it.
Can someone confirm that the following two pieces of code do the same thing !?

In C: if (k1 >= 10) calc |= 1;
In Pascal: if (k1>=10) and (k1 mod 2 = 0) then calc:=calc+1;

11-17-2000 13:09:56

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) XenTriC
Profile
####, disregard my previous post !
I'm tired, didn't use my head and tested with (k1 mod 2=0) instead of (calc mod 2=0)...
Duh, offcourse that'll generate wrong keys.
It should be this:

In Pascal: if (k1>=10) and (calc mod 2 = 0) then calc:=calc+1;

This should be better, now it will get 59% of all pairs correct !
But there still is a bitshift which isn't taken care of in the keygen...

11-17-2000 13:28:59

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) XenTriC
Profile
Changed the keygen executable for those that can't compile.
Added a textfile table with all passes.
And contains updated Pascal source.

http://users.raketnet.nl/dunix/wpcrack.zip

Note: Still only 60% of generated keys are correct !

11-17-2000 13:39:09

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) jwolfx
Profile
It's been a while since I've done Pascal, but...

In C: if (k1 >= 10) calc |= 1;
In Pascal: if (k1>=10) then calc:=calc or 1;

11-17-2000 13:40:59

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) jwolfx
Profile
I tried converting XenTriC's and Luc Kumps' work into JavaScript for those that prefer not to run programs or are not using WIN/DOS:

http://virgin.scriptmania.com

11-17-2000 14:45:50

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) Randy
Profile
Great job!
11-17-2000 15:48:05

New MessageRE:Keygenerator for setupscreen : It's cracked !!! (modified 0 times) Haxx
Profile
We have what is supposedly the definitive key/password generator for the Webplayer's setup screen. It should crack any key thrown at it.

HackAble.com's Webplayer key/password generator

Haxx,
HackAbles.com

01-09-2001 10:52:43

Reply to Thread | Printer |
All times are PSTPowered by UltraBoard v1.62



Copyright © 2000, Netmake Inc. All Rights Reserved.
See Terms and Conditions for more information.




i-opener opener laptop notebook computer help drivers dll free windows dos repair fix linux mac macintosh 2000 95 98 nt pc configure hardware software sound video netscape explorer network networking lan wan software cmos fat bios printer card mouse modem ide scsi cd rom controllers scanner tape hard drive cgi scripts source code mp3