cs361-stock-prediction / stock-predictor

All Code for Stock Prediction Web App for CS361 Winter 2020
1 stars 0 forks source link

Clientside Hash is not Enough #27

Open lyellread opened 4 years ago

lyellread commented 4 years ago

Explanation

If all you do is hash {pw|salt} clientside, the connection is no safer than it used to be, as the hash can be replayed. We must hash differently, in a way that prevents replays.

Steps to Reproduce

um

Fix Recommendation

Some type of hashing that uses (maybe) time, or salt or pepper.

lyellread commented 4 years ago

https://oauth.net/2/