You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an error in Digest.prototype.parseAuthHeader:
vartokens=searchHeader.match(/(\w+)="([^"]+)"/g);
means that auth parameter values can't be empty but client actually might send empty cnonce which will result in undefined (instead of being empty) cnonce variable on server side.
The text was updated successfully, but these errors were encountered:
There is an error in Digest.prototype.parseAuthHeader:
means that auth parameter values can't be empty but client actually might send empty cnonce which will result in undefined (instead of being empty) cnonce variable on server side.
The text was updated successfully, but these errors were encountered: