View Single Post
  #2  
Old 06-06-2013, 03:43 PM
Vexyl
Hill Giant
 
Join Date: Oct 2009
Location: U.S.A.
Posts: 197
Default

How are you storing the account password? It should be stored as a SHA hash.

For example:
Code:
UPDATE tblLoginServerAccounts SET AccountPassword=SHA('foo') WHERE AccountName='bar';
Reply With Quote