RE: FTP passwords in plain text
02-25-2016, 05:56 AM
(This post was last modified: 02-25-2016, 05:58 AM by bbspike.)
Yeah true.
I already have change a Sentora server of us. Now its stores ftp passwords as SHA512.
Updating existing users was easy:
Above code can easily be used in the update script.
The passwd column must be set to 180 tokens for this.
I already have change a Sentora server of us. Now its stores ftp passwords as SHA512.
Updating existing users was easy:
Code:
UPDATE ftpuser SET passwd=SHA2(passwd, 512)
Above code can easily be used in the update script.
The passwd column must be set to 180 tokens for this.