-
-
Notifications
You must be signed in to change notification settings - Fork 359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Oathkeeper duplicates CORS headers #1100
Comments
I have experienced the same problem.
|
This could be avoided if we could strip upstream headers, however there doesn't seem like there's a supported way to do this. |
Wouldn't the easier solution be to turn off the cors headers on the upstream, if oathkeeper handles them anyways, or vice versa (turn of in oathkeeper, turn on in upstream)? |
this way you will not have correct cors if client send request with incorrect or expired session |
We turned off CORS header for oathkeeper, but the error handler gets CORS error ... Could we enable oathkeeper to configure CORS headers only for error handlers? |
As a workaround or final solution (based how you see it), you could disable CORS for oathkeeper and handle CORS by a proxy as @aeneasr suggested. Based on your proxy implementation, you could then remove the upstream headers in the proxy itself for these upstream services that do not support the disabling of CORS. Nginx allows that with |
Preflight checklist
Describe the bug
We are using oathkeeper and kratos services.
When oathkeeper CORS config looks as follows:
then the request
produces the following output in the headers:
oathkeeper appends duplicate CORS headers to the response (in addition to CORS headers added by the underlying services).
This is quite problematic, as it breaks CORS requests issued by the browser: https://crashtest-security.com/multiple-values-access-control-allow-origin/
"While the header does support multiple origins, browsers usually do not. "
Reproducing the bug
curl -v 'https://webapi-user.our-company.com/api/v1/datafeed/rollingbar?name=ADAUSD' -H 'origin: https://ui-admin.our-company.com'
Relevant log output
No response
Relevant configuration
Version
0.40.2
On which operating system are you observing this issue?
None
In which environment are you deploying?
None
Additional Context
No response
The text was updated successfully, but these errors were encountered: