Old Jul 19, 2004 | 01:25 PM
  #5  
Jim Galbally's Avatar
Jim Galbally
20K+ Super Poster.
 
Joined: May 2003
Posts: 20,599
Likes: 0
From: Ramsgate, Kent Drives: E39 530D Touring
Default

you can do a view...source which will give you your encryption algorythm:
Code:
// **** ENCRYPTS USERNAME > RESULT IN USERCODE
i=0
n=0
while(i < username.length){
do{
 m = username.charCodeAt(i);
    if(m==100){
    m = 69}
 usercode *= m;
    while (usercode > 1000000000000){
    usercode = usercode / 10
    usercode = Math.round(usercode)}
 n++}
 while (n <= i);
 n = 0;
 i++}
// *********************************************

// **** ENCRYPTS PASSWORD > RESULT IN PASSCODE
i=0
n=0
while(i < password.length){
do{
 m = password.charCodeAt(i);
    if(m==100){
    m = 69}
 passcode *= m;
    while (passcode > 1000000000000){
    passcode = passcode / 10
    passcode = Math.round(passcode)}
 n++}
 while (n <= i);
 n = 0;
 i++}
which if i could be arsed to sit here with a calculator n work it out i could work out what password etc. will let me in...
Reply