Problem with Basic Auth
See original GitHub issueI’m getting 500 Internal Server Error
everytime. Is there any problem in this code
POST https://localhost:5001/api/authenticate/ HTTP/1.1
@username = "john doe"
@password = "foobar"
Authorization: Basic {{username}}:{{password}}
Issue Analytics
- State:
- Created a year ago
- Comments:14
Top Results From Across the Web
Is BASIC-Auth secure if done over HTTPS?
There is another concern with using HTTP basic authentication: the full password is sent over the SSL tunnel. In other words, the password...
Read more >The Security Flaws of Basic Authentication - O'Reilly
Basic authentication is simple and convenient, but it is not secure. It should only be used to prevent unintentional access from nonmalicious parties...
Read more >Simple Security Fails (part 5) - Basic Authentication
The Issue · No session management. No logout functionality · No support for account lockout. Attackers can continuously brute force account ...
Read more >Is basic access authentication secure? - Stack Overflow
The worry about basic auth is that the credentials are sent as cleartext and are vulnerable to packet sniffing, if that connection is ......
Read more >Pentesting Basic Authentication - Virtue Security
Problems with Basic Authentication · The username and password are sent in every request. · Most configurations of Basic Authentication do not implement ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@lhasadad, I added an extra line between
POST
andAuthorization
that was causing this error.correct syntax
@lhasadad no… its not that big of a deal but still ill see removing it