You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Properly scoping the JWT means you could also run the token_no_wildcard contrib plugin, so that Jitsi Meet any rejects token containing wildcards in the sub or room parameters, which could limit the scope of another security issue.
The text was updated successfully, but these errors were encountered:
jitsi-openid
always creates a JWT with a room claim set to*
:jitsi-openid/src/routes.rs
Line 156 in eb7b9d7
The
room
is saved to the session, and is used in that same handler to construct a final URL to send to Jitsi Meet:jitsi-openid/src/routes.rs
Line 165 in eb7b9d7
Also, the
room
session attribute itself is set from an external input:jitsi-openid/src/routes.rs
Lines 36 to 40 in eb7b9d7
This should reject setting it to
*
.Properly scoping the JWT means you could also run the
token_no_wildcard
contrib plugin, so that Jitsi Meet any rejects token containing wildcards in thesub
orroom
parameters, which could limit the scope of another security issue.The text was updated successfully, but these errors were encountered: