• 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!

Solved Default password hashing/encryption?

hellboy

Intermediate OT User
Joined
Apr 6, 2008
Messages
544
Solutions
6
Reaction score
121
Location
player:getTown()
Today I compiled and configured newest TFS, after that I tried to make some test account.

Code:
insert into accounts(name, password) values('test', 'test');
Client return information "Bad password or login", so I tried MD5

Code:
update accounts set password=MD5('test');

with same effect. How TFS store password (config.lua don't contain any usefull information about that)?

EDIT

nvm
SHA1, close topic
 
Back
Top