Spring supports Matrix variables.
When Spring integration is used, Armeria calls Spring controllers via TomcatService
or JettyService
with the path
that may contain matrix variables.
In this situation, the Armeria decorators might not invoked because of the matrix variables.
Let's see the following example:
// Spring controller
@GetMapping("/important/resources")
public String important() {...}
// Armeria decorator
ServerBuilder sb = ...
sb.decoratorUnder("/important/", authService);
If an attacker sends a request with /important;a=b/resources
, the request would bypass the authrorizer
Users can add decorators using regex. e.g. "regex:^/important.*"
{ "nvd_published_at": "2023-07-25T21:15:10Z", "cwe_ids": [ "CWE-863" ], "severity": "HIGH", "github_reviewed": true, "github_reviewed_at": "2023-07-25T18:24:39Z" }