-
Notifications
You must be signed in to change notification settings - Fork 6
Create authentication for frontend #12
Comments
Here are couple of options.
|
We will run on Azure env and I've been told it's not that easy to set basic auth there, so the authentication should be solved by the app itself. So I guess the middle option is quite fine for now - login screen, hardcoded credentials (for MVP). |
For MVP you can do Basic auth static:
(login testuser password verymuchtesting) |
for 2. |
why sha/digest of the password is sent to the server ? doesn't it mean that it actually makes the digest to be a plain-text password effectively, hence the protocol would be susceptible to pass-the-hash attack (eg. plaintext is stored on the server and can be directly used after leak without any processing/cracking) ? |
Let's go with basic auth in MVP, ok? |
@Kobzol Please take this over. |
Basic auth is there, so with HTTPS we can just create credentials and send them to (backend) users. |
Using HTTPS is sure thing but we have to prevent unauthorized people from using the FE.
The text was updated successfully, but these errors were encountered: