Summary
ManyDesigns/Portofino before version 5.2.1 did not properly verify the signature of JSON Web Tokens. This allows forging a valid JWT and can lead to authentication bypasses.
Product
Tested Version
Commit 8df94136
Details
A JWT consists of three parts:
- header
- claims/payload
- signature
The three parts are base64 encoded and concatenated to form a string like this:
base64EncodedHeader.base64EncodedClaims.base64EncodedSignature
. In a client-server context the signature is created by the server and so a (malicious) client could not change a JWT without making signature validation fail!
ManyDesigns/Portofino uses the parse method to verify the signature of a JWT.
The parse
method properly verifies the signature if it consists of the three parts.
But it will also verify a JWT that contains no signature at all!
So it will happily accept a token like this that could have been created by a malicious attacker:
base64EncodedHeader.base64EncodedClaims
The solution is to always use the parseClaimsJws
method when parsing signed JWTs!
(This vulnerability has been found using this CodeQL query)
Impact
Arbitrary JWT forging which may lead to authentication bypasses.
CVE
Github Advisories
Coordinated Disclosure Timeline
- 2021-03-29: Asked to open a Github security advisory.
- 2021-04-01: Invited to Github security advisory.
- 2021-04-09: Issue is patched.
- 2021-04-15: CVE is assigned.
- 2021-04-16: Advisory is published.
Credit
This issue was discovered and reported by @intrigus-lgtm.
Contact
You can contact the ISL at isl@intrigus.org
. Please include a reference to ISL-2021-002
in any communication regarding this issue.