CVE-2026-46620
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditede107 is a content management system (CMS). Prior to 2.3.5, e107 CMS does not properly enforce CSRF token validation on comment moderation actions. The problem comes down to how session_handler::check() handles CSRF tokens. Instead of requiring a token on every state-changing request, it only validates the token if one happens to be present. If there is no token at all, the check is skipped entirely. This vulnerability is fixed in 2.3.5.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidencee107 CMS prior to 2.3.5 has a CSRF protection bypass in session_handler::check() where token validation only occurs if a token is present in the request. When no token is provided, the validation is skipped entirely, allowing attackers to forge comment moderation actions without a valid CSRF token.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- None
- User interaction
- Required
- Scope
- Unchanged
- Confidentiality
- None
- Integrity
- High
- Availability
- None
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Identify installed e107 CMS versionLocate the version file or constant in your e107 installation. Check files like e107_config.php, or look for a version.php file in the includes or core directories. Alternatively, access the admin dashboard and look for version information typically displayed in the footer or in Admin > Dashboard > System Info.Affected if The installed version is below 2.3.5 (e.g., 2.3.4, 2.3.3, earlier versions)
-
Locate session_handler class fileSearch the e107 installation for the session_handler class file. This is typically found in e107_handlers or includes directories. Look for a file containing 'session_handler' class definition.Affected if The file exists and contains a check() method that conditionally validates CSRF tokens
-
Inspect session_handler::check() for conditional validation logicOpen the session_handler class file and examine the check() method. Look for logic that validates CSRF tokens only when a token parameter is present in the request (e.g., if (isset($_POST['csrf_token']) || isset($_GET['csrf_token'])) { validate... }). Note if the validation block is wrapped in a conditional that skips it entirely when no token is provided.Affected if The check() method contains conditional CSRF validation that bypasses validation when no token is present in the request
-
Verify comment moderation functionality is accessibleCheck if the comment moderation features are enabled in the CMS. Navigate to Admin > Comments or similar admin section. Determine if users can access comment approve, delete, or edit actions.Affected if Comment moderation features are enabled and accessible to authenticated users (the attack requires these to be available)
Your environment is affected if you run e107 CMS versions prior to 2.3.5 where the session_handler::check() method conditionally validates CSRF tokens only when present, and comment moderation features are enabled.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedUpgrade e107 CMS to version 2.3.5 or later, which enforces mandatory CSRF token validation for all state-changing operations.
e107 CMS 2.3.5
- Backup the current e107 CMS installation and database before proceeding with any changes
- Download e107 CMS version 2.3.5 from the official source (e107.org or the official GitHub repository)
- Replace the existing e107 CMS files with the new version 2.3.5 files
- Verify that the session_handler::check() function now properly validates CSRF tokens (validates when present, rejects when absent)
- Test comment moderation functionality to ensure CSRF protection is working correctly
- Confirm the upgrade was successful by logging in and verifying the CMS functions normally
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation4.0 h
- Testing6.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $3,808.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-46620 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-46620 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data