Описание
Default CORS config allows any origin with credentials
Impact
Origin reflection attack
The default CORS configuration is vulnerable to an origin reflection attack. Take the following http4s app app, using the default CORS config, running at https://vulnerable.example.com:
The following request is made to our server:
When the anyOrigin flag of CORSConfig is true, as is the case in the default argument to CORS, the middleware will allow sharing its resource regardless of the allowedOrigins setting. Paired with the default allowCredentials, the server approves sharing responses that may have required credentials for sensitive information with any origin:
A malicious script running on https://adversary.example.org/ can then exfiltrate sensitive information with the user's credentials to vulnerable.exmaple.org:
Null origin attack
The middleware is also susceptible to a Null Origin Attack. A user agent may send Origin: null when a request is made from a sandboxed iframe. The CORS-wrapped http4s app will respond with Access-Control-Allow-Origin: null, permitting a similar exfiltration of secrets to the above.
Patches
The problem is fixed in 0.21.27, 0.22.3, 0.23.2, and 1.0.0-M25. The original CORS implementation and CORSConfig are deprecated. In addition to the origin vulnerability, the following deficiencies in the deprecated version are fixed in the new signatures:
Migration
The CORS object exposes a default CORSPolicy via CORS.policy. This can be configured with various with* methods, like any http4s builder. Finally, the CORSPolicy may be applied to any Http, like any other http4s middleware:
Workarounds
It is possible to be safe in unpatched versions, but note the following defects exist:
- The
anyMethodflag, enabled by default, accepts methods that cannot be enumerated in theAccess-Control-Allow-Methodspreflight response. - Rejected CORS requests receive a
403response, when the client should be the enforcement point. The server should just omit all CORS response headers. - Does not send
Vary: Access-Control-Request-Headerson preflight requests. This may confuse caches. - Does not validate the
Access-Control-Request-Headersof a preflight request. This validation is not mandated by the Fetch standard, but is typical of most server implementations. - Needlessly sends
Vary: Access-Control-Request-Methodon non-preflight requests. This should be harmless in practice. - Needlessly sends
Access-Control-Max-Ageheader on non-preflight requests. This should be harmless in practice. - Sends an invalid
Access-Control-Allow-Credentials: falseinstead of omitting the header. This should be harmless in practice.
Explicit origins
In versions before the patch, set anyOrigin to false, and then specifically include trusted origins in allowedOrigins.
0.21.x
0.22.x, 0.23.x, 1.x
Disable credentials
Alternatively, sharing responses tainted by credentials can be deprecated.
0.21.x
0.22.x, 0.23.x, 1.x
References
For more information
If you have any questions or comments about this advisory:
- Open an issue in GitHub
- Contact us via the http4s security policy
Пакеты
org.http4s:http4s-server_2.13.0-M5
Отсутствует
org.http4s:http4s-server_3
>= 0.22.0, < 0.22.3
0.22.3
org.http4s:http4s-server_3
>= 0.23.0, < 0.23.2
0.23.2
org.http4s:http4s-server_2.10
Отсутствует
org.http4s:http4s-server_2.11
Отсутствует
org.http4s:http4s-server_2.12
< 0.21.27
0.21.27
org.http4s:http4s-server_2.12
>= 0.22.0, < 0.22.3
0.22.3
org.http4s:http4s-server_2.12
>= 0.23.0, < 0.23.2
0.23.2
org.http4s:http4s-server_2.13
< 0.21.27
0.21.27
org.http4s:http4s-server_2.13
>= 0.22.0, < 0.22.3
0.22.3
org.http4s:http4s-server_2.13
>= 0.23.0, < 0.23.2
0.23.2
Связанные уязвимости
Http4s is a minimal, idiomatic Scala interface for HTTP services. In http4s versions 0.21.26 and prior, 0.22.0 through 0.22.2, 0.23.0, 0.23.1, and 1.0.0-M1 through 1.0.0-M24, the default CORS configuration is vulnerable to an origin reflection attack. The middleware is also susceptible to a Null Origin Attack. The problem is fixed in 0.21.27, 0.22.3, 0.23.2, and 1.0.0-M25. The original `CORS` implementation and `CORSConfig` are deprecated. See the GitHub GHSA for more information, including code examples and workarounds.