Impact
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
Patches
Workarounds
Users can add decorators using regex. e.g. "regex:^/important.*"
References
Impact
Spring supports Matrix variables.
When Spring integration is used, Armeria calls Spring controllers via
TomcatService
orJettyService
with the paththat may contain matrix variables.
In this situation, the Armeria decorators might not invoked because of the matrix variables.
Let's see the following example:
If an attacker sends a request with
/important;a=b/resources
, the request would bypass the authrorizerPatches
Workarounds
Users can add decorators using regex.
e.g. "regex:^/important.*"
References