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
Expected behavior
Clear error message that EXEC permission is missing.
Version (please complete the following information):
Image Version: v2.36.1
Docker Version: 25.0.1
Additional context
This is mostly just to help out other people if they run into the given error above. With the missing EXEC permission, the socket proxy returns <html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html> and to no surprise < has the ASCII value of 60, see in the error above.
The text was updated successfully, but these errors were encountered:
@m90 I think you can just close this issue as "Works by Design". The documentation clearly states to add EXEC permissions. I just opened it so there are at least some hits regarding the Unrecognized input header: 60, as it was quite hard to diagnose the issue once I made the copy paste mistake of not adding EXEC.
Alternativaly it could be possible to read the entire stream and only demux it later. And if the demux fails, print the content of the stream, so the error message would clearly show the forbidden request.
I've also had similar problems with the exec output before, so maybe looking into if this can be improved is worth it. The current code that does it is mostly just copied over from the Moby test suite without thinking about it too much.
I'll leave the issue open and see if I can go on a spelunking excursion in the relevant parts soon.
Describe the bug
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Clear error message that EXEC permission is missing.
Version (please complete the following information):
Additional context
This is mostly just to help out other people if they run into the given error above. With the missing EXEC permission, the socket proxy returns
<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>
and to no surprise<
has the ASCII value of 60, see in the error above.The text was updated successfully, but these errors were encountered: