ServerAuth icon indicating copy to clipboard operation
ServerAuth copied to clipboard

BCrypt support/enabled by default

Open Plazmaz opened this issue 7 years ago • 1 comments

Currently the default password used by this project is unsalted sha256. This is unsafe due to advances in modern computing power and rainbow table attacks. To give some context, I can crack unsalted sha256 on my laptop at 108 million guesses per second. This would easily rip through any database your program generates. I strongly suggest switching to bcrypt. If you must use sha256, please generate user-specific salts to protect their integrity.

Plazmaz avatar Sep 06 '16 20:09 Plazmaz

@Plazmaz I know right

ghost avatar Sep 22 '16 08:09 ghost