how to create password OW

11/04/2013 14:34 electric2008#1
i want to know to how to create password. it use code ? md5 or others code ? help me. T^T
11/04/2013 14:43 ZEON1#2
Quote:
Originally Posted by electric2008 View Post
i want to know to how to create password. it use code ? md5 or others code ? help me. T^T
Why do you need it?
11/04/2013 16:35 electric2008#3
i try open server but i can't create password it. - -.
11/04/2013 16:55 vancourt#4
the formula to create account is
Login+Password = MD5

on php will be
PHP Code:
$login "electric2008"
$pw "123"
$id 1
$Salt 
$Salt.$pw;
$Salt md5($Salt);
echo 
"insert into account  (id,name,passwd,creatime) values ({$id},'{$login}',$Salt,'2013-08-22 00:00:00.000')" 
put into any php website and on login write your login , same with pw,
Note: check the account table and take the last id
like if you find the max id 54 you wil change id to 55 because if you have accounts with same id will make issue with chars in both account
11/04/2013 17:02 ZEON1#5
Quote:
Originally Posted by electric2008 View Post
i try open server but i can't create password it. - -.
You need to be familiar with this thread
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...] zone.com/f770/battle-immortals-files-guide-867226/
11/04/2013 18:17 LeRaz0r#6
It all depends on the Authd you're using, you can customize the password hashing however you want, depending on the authd. You can even make the passwords completely ASCII blank (MyPassword << Like this). I'm assuming you're using the traditional one, tho. If so, it's;

Code:
$Pass = "0x" .  md5($user.$Pass);
11/05/2013 07:04 electric2008#7
if i want to create password 0845981749. what md5 of it ?
11/05/2013 08:07 LeRaz0r#8
Quote:
Originally Posted by electric2008 View Post
if i want to create password 0845981749. what md5 of it ?

Seriously dude? ...

[Only registered and activated users can see links. Click Here To Register...]