Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Digest Authorization - challenge responses missing query parameters in uri element. #497

Closed
ERobsham opened this issue Mar 21, 2025 · 1 comment

Comments

@ERobsham
Copy link
Contributor

While investigating a bug with communication with IC Realtime ORB cameras within an application I maintain, I found the GNUStep implementation of digest authentication challenge responses differs from MacOS, which I believe is causing the camera to reject the request with a 400 error.

Here are the contents of the challenge responses per platform (note: redacted bits are substituted with ...):

linux / GNUStep (results in a 400 / error):

GET /cgi-bin/ptz.cgi?action=start&channel=0&code=Right&arg1=0&arg2=5&arg3=0 HTTP/1.1
Host: ...:80
Authorization: Digest 
    realm="Login to ...",
    username="...",
    nonce="...",
    uri="/cgi-bin/ptz.cgi",
    response="...",
    qop="auth",
    nc=00000001,
    cnonce="...",
    opaque=""
Content-Length: 0

MacOS (results in a 200 / success):

GET /cgi-bin/ptz.cgi?action=start&channel=0&code=Right&arg1=0&arg2=5&arg3=0 HTTP/1.1
Host: ...
Authorization: Digest 
    username="...", 
    realm="Login to ...", 
    nonce="...", 
    uri="/cgi-bin/ptz.cgi?action=start&channel=0&code=Right&arg1=0&arg2=5&arg3=0", 
    cnonce="...", 
    nc=00000001, 
    qop=auth, 
    response="...", 
    opaque=""
Accept: */*
Content-Length: 0
Content-Type: application/x-www-form-urlencoded

After looking into this and reading though the RFCs around 'HTTP Digest Access Authentication', it appears as though including the query params if they are present is the correct behavior (IIUC, it specifies absolute-path [ "?" query ]). Feel free to review:

@ERobsham
Copy link
Contributor Author

Fix is merged, thanks!

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Development

No branches or pull requests

1 participant