Severity by source
AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
Requires an existing valid session so PR:L; network-reachable token prediction with no user interaction; impersonation breaks confidentiality and integrity (C:H/I:H) but not availability.
Primary rating from Vendor (GitHub_M).
CVSS VectorVendor: GitHub_M
Lifecycle Timeline
4DescriptionCVE.org
BigBlueButton is an open-source virtual classroom. Prior to 3.0.21, bbb-web generated conference sessionToken values with insufficiently secure randomness in bbb-common-web/src/main/java/org/bigbluebutton/api/Util.java and bigbluebutton-web/grails-app/controllers/org/bigbluebutton/web/controllers/ApiController.groovy, allowing a session user to predict other users' conference session tokens and impersonate them. This issue is fixed in version 3.0.21.
Articles & Coverage 1
AnalysisAI
Session hijacking in BigBlueButton before 3.0.21 lets an authenticated conference participant predict and reuse other users' session tokens to impersonate them. The bbb-web component generated 16-character sessionToken values (and 12-character auth tokens and internal user IDs) using Apache Commons RandomStringUtils.randomAlphanumeric, a non-cryptographic PRNG, making the token space guessable to anyone who already holds a valid session. Rated CVSS 8.1 with high confidentiality and integrity impact; no public exploit identified at time of analysis.
Technical ContextAI
BigBlueButton is an open-source web conferencing / virtual classroom platform built on a Grails (Groovy/Java) web tier (bbb-web). The flaw is CWE-330 (Use of Insufficiently Random Values): token generation in ApiController.groovy called RandomStringUtils.randomAlphanumeric, which by default draws from java.util.Random - a linear congruential PRNG that is not cryptographically secure. An observer of one or more issued tokens can potentially reconstruct the internal PRNG state and predict subsequent sessionToken, authToken, and internalUserID values. The fix commit (8457886) remediates this by introducing a Util.randomAlphanumeric helper backed by java.security.SecureRandom and replacing all three call sites (session token length 16, auth token and user ID length 12). Affected CPE is cpe:2.3:a:bigbluebutton:bigbluebutton.
RemediationAI
Vendor-released patch: 3.0.21 - upgrade BigBlueButton to v3.0.21 or later, which replaces the insecure RandomStringUtils token generation with a java.security.SecureRandom-backed Util.randomAlphanumeric helper (fix commit 8457886c248aeba5597ee8749267602d6d117e98). Review the advisory at https://github.com/bigbluebutton/bigbluebutton/security/advisories/GHSA-7959-pf2v-xc4h before rolling out. If immediate upgrade is not possible, reduce exposure by restricting who can obtain a valid session (enforce moderator approval / waiting-room join, limit guest and anonymous joins, and shorten session and meeting lifetimes so predicted tokens expire faster) and monitor for the same session token being used concurrently from different IPs. These are partial compensating controls only: they narrow the pool of would-be attackers but do not fix the weak PRNG, and tightening join policies may inconvenience legitimate users.
Oracle Java SE 7 Update 6 and earlier contains multiple sandbox bypass vulnerabilities via the ClassFinder and forName m
Remote code execution in IBM Sterling B2B Integrator, Sterling Integrator, and Tivoli Common Reporting allows unauthenti
Java Runtime Environment sandbox bypass via incorrect image channel verification in 2D component allows remote unauthent
Oracle Java SE JDK/JRE 7 and 6 Update 27 and earlier allows remote code execution with complete system compromise throug
JBoss Seam 2 in Red Hat JBoss EAP 4.3.0 fails to sanitize JBoss Expression Language inputs, allowing remote attackers to
Unspecified vulnerability in the Java Runtime Environment (JRE) component in Oracle Java SE 7 update 4 and earlier, 6 up
Multiple vulnerabilities in Oracle Java 7 before Update 11 allow remote attackers to execute arbitrary code by (1) using
Unspecified vulnerability in the Java Runtime Environment (JRE) component in Oracle Java SE 7 Update 2 and earlier, 6 Up
The WLS Security component in Oracle WebLogic Server 10.3.6.0, 12.1.2.0, 12.1.3.0, and 12.2.1.0 allows remote attackers
Unspecified vulnerability in the Java Runtime Environment (JRE) component in Oracle Java SE 7 Update 7 and earlier allow
Remote unauthenticated attackers can execute arbitrary code on Adobe ColdFusion servers through Java deserialization fla
The ExceptionDelegator component in Apache Struts before 2.2.3.1 interprets parameter values as OGNL expressions during
Same weakness CWE-330 – Use of Insufficiently Random Values
View allSame technique Information Disclosure
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-44996