When I use HTTP BASIC authentication along with HTTPS, are the username and password securely passed to the server?
I would be happy if you can help me with some ref
Yes, they are passed securely... if a hacker can decrypt your https transaction he can for sure decrypt the base64 user:password...
I know the more rocks you put the harder it takes... but base64 is not for security reasons
If a tool like Fiddler is installed on your local system, it could be used to forward your https transmissions decrypted to a third party. If someone sets it up to do this, they already own your system (either have physical access or full/root access).
yes. if you're using https the conversation with the web server is entirely encrypted.
HTTP Basic Authentication and HTTPS both are different concepts.
Please Note: There is difference between authorization and security. HTTP Basic authorization is an authorization concept it is not security
YES. In your case the HTTP message with username and password will be encrypted and then sent to the server.