I am making a PROPFIND Ajax request to server using XmlHttpRequest in Firefox. The server is using Basic authentication. I pass credentials to to open method:
xhr.open("PROPFIND", "https://serv/folder/", false, "User1", "password");
Using Fiddler I have discovered that the request looks like the following:
PROPFIND https://User1:password@serv/folder/
As far as I understand it makes no sense to pass login and password in url. I think this is a FireFox bug.
Does it presents any security risk in case I am using SSL?