• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Password MD5

gooden

New Member
Joined
May 28, 2007
Messages
29
Reaction score
0
Well In first place Gratz for You project. It's a realy good project =)

Well my question is that if there is anyway to use a md5 system at the password of acc.
OTher is that i want to know if is there anyway of download the svn Trunk with tortoise svn. i can't do it :|

Glad if you guys could Help
GOoden =)
 
This query should do it:
Code:
UPDATE `accounts` SET `password` = md5(`password`);
 
MD5 is more secure when somebody gets your db. It's theoretically not possible to make a plain string from a hashed one. Practically, it just takes some time.
 
MD5 is more secure when somebody gets your db. It's theoretically not possible to make a plain string from a hashed one. Practically, it just takes some time.

Its impossible to decrypt a MD5 hash, however you should always use strong passwords cause if ur hash gets salted it will probably gets skipped.
 
It's not impossible, it just takes a long time if it's a hard one.
 
Back
Top