What does a 401 error in IIS mean?
▼
HTTP 401 means the server requires authentication that the client did not provide or provided incorrectly. IIS sub-status codes (401.1 through 401.5) give specific reasons such as logon failed, logon denied by policy, or authorization filter denied.
How can I find which accounts are being targeted?
▼
IIS logs include the cs-username field when authentication is attempted. Filter your logs for sc-status=401 and group by cs-username to see which accounts attackers are targeting.
What is the difference between 401 and 403 in IIS?
▼
401 means the client has not authenticated (or authentication failed). 403 means the client is authenticated but does not have permission to access the resource. Both can indicate security issues but have different root causes.