NTLM authorization does not work in FireFox 118.0.1
Hello! I have a problem with latest version of FireFox (118.0.1). I have a website running at https://localhost:7230. And Asp .Net Core backend running at http://localhos… (tuilleadh eolais)
Hello! I have a problem with latest version of FireFox (118.0.1). I have a website running at https://localhost:7230. And Asp .Net Core backend running at http://localhost:5205/, the authorization is configured to use NTLM.
From the frontend I call: const response = await axios.get("http://localhost:5205/Users/GetUser", {
params: null, withCredentials: true
});
and it works in Chrome and in previous FireFox 117.0.1, but doesn't work in FireFox 118.0.1.
I've checked the request-headers, they are the same except for the version in User-Agent. I guess this has something to do with the security settings. I looked at the patch notes but didn't see anything similar to my problem.
What was changed in the latest version and how can I fix this?