🔒️(frontend) room ids are generated with non-cryptographic rand

Room identifiers are created with `Math.random()`, which is predictable
and not suitable for security-sensitive identifiers. Predictable
room IDs increase the risk of room enumeration and unauthorized
access attempts, especially when IDs are part of join URLs.

Affected files: generateRoomId.ts

Signed-off-by: tuanaiseo <221258316+tuanaiseo@users.noreply.github.com>
This commit is contained in:
tuanaiseo
2026-04-03 19:34:55 +07:00
committed by aleb_the_flash
parent cd7799997e
commit fc260b2686
2 changed files with 14 additions and 3 deletions
+1
View File
@@ -16,6 +16,7 @@ and this project adheres to
- ♻(frontend) standardize role terminology across localizations
- 🐛(backend) make start-recording atomic and fault-tolerant
- 🔒️(frontend) room ids are generated with non-cryptographic rand
## [1.15.0] - 2026-04-30