CVE-2026-28808
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 · uneditedIncorrect Authorization vulnerability in Erlang OTP (inets modules) allows unauthenticated access to CGI scripts protected by directory rules when served via script_alias. When script_alias maps a URL prefix to a directory outside DocumentRoot, mod_auth evaluates directory-based access controls against the DocumentRoot-relative path while mod_cgi executes the script at the ScriptAlias-resolved path. This path mismatch allows unauthenticated access to CGI scripts that directory rules were meant to protect. This vulnerability is associated with program files lib/inets/src/http_server/mod_alias.erl, lib/inets/src/http_server/mod_auth.erl, and lib/inets/src/http_server/mod_cgi.erl. This issue affects OTP from OTP 17.0 before OTP 28.4.2, OTP 27.3.4.10 and OTP 26.2.5.19, corresponding to inets from 5.10 before 9.6.2, 9.3.2.4 and 9.1.0.6.
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 confidenceIn Erlang OTP's inets HTTP server, an incorrect authorization vulnerability exists where mod_auth evaluates directory-based access controls against the DocumentRoot-relative path while mod_cgi executes the script at the ScriptAlias-resolved path. This path mismatch allows unauthenticated attackers to bypass directory protection rules and execute CGI scripts that should be restricted, achieving unauthenticated remote code execution.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data>= 5.10, < 9.1.0.6> 9.2, < 9.3.2.4> 9.4, < 9.6.2>= 17.0, < 26.2.5.19>= 27.0, < 27.3.4.10>= 28.0, < 28.4.2CVSS 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
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
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 Erlang/OTP or inets versionRun 'erl -eval "erlang:display(erlang:system_info(otp_release)), halt()." -noshell' or check your Erlang installation via 'erl' and call erlang:system_info(otp_release). For inets specifically, check the inets version with 'inets:version()' or via the inets app file.Affected if The installed Erlang/OTP version falls within: >= 17.0 and < 26.2.5.19; OR >= 27.0 and < 27.3.4.10; OR >= 28.0 and < 28.4.2. Alternatively, inets version is >= 5.10 and < 9.1.0.6; OR > 9.2 and < 9.3.2.4; OR > 9.4 and < 9.6.2.
-
Verify inets HTTP server is runningCheck if the inets application is started: connect to the Erlang node and run 'application:which_applications()' to see if inets is listed, or check your system's running processes for an inets HTTP server instance.Affected if inets HTTP server is actively running and serving HTTP requests.
-
Confirm mod_cgi is enabledExamine your inets configuration file (typically inets.conf or httpd.conf) and look for the mod_cgi module being loaded, or check for ScriptAlias directives that map URL prefixes to CGI script directories.Affected if mod_cgi is enabled and ScriptAlias directives are configured to map URL prefixes to CGI script directories.
-
Check for mod_auth directory-based access controlsExamine the inets configuration for mod_auth setup, specifically look for <Directory> blocks or auth configuration that restricts access to specific paths based on authentication rules.Affected if mod_auth is configured with directory-based access control rules (such as require valid-user or require user) protecting CGI script paths.
-
Identify script_alias mapping outside DocumentRootReview your inets configuration for ScriptAlias directives. Compare the directory path specified in each ScriptAlias directive against the DocumentRoot setting. ScriptAlias maps a URL prefix to a filesystem path.Affected if A ScriptAlias directive maps a URL prefix to a directory that is NOT under the DocumentRoot directory, AND that directory contains CGI scripts protected by mod_auth access controls.
You are affected if you run a vulnerable Erlang/OTP/inets version AND have inets HTTP server running with mod_cgi enabled AND use ScriptAlias to map CGI scripts outside DocumentRoot while those scripts are protected by mod_auth directory-based access controls.
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 · scoped9.1.0.69.3.2.49.6.2
Upgrade Erlang OTP/inets to versions 28.4.2, 27.3.4.10, 26.2.5.19, or the corresponding inets versions 9.6.2, 9.3.2.4, 9.1.0.6. Alternatively, ensure CGI scripts are not placed in directories accessible via script_alias configurations that map outside DocumentRoot.
Erlang/OTP 28.4.2 (or 27.3.4.10 for OTP 27.x, or 26.2.5.19 for OTP 26.x)
- 1. Identify the current Erlang/OTP and inets versions running in your environment using 'erl -eval "erlang:display(erlang:system_info(otp_release)), halt()." -noshell' or checking your package manager.
- 2. For Erlang/OTP 26.x users: upgrade to OTP 26.2.5.19 or later.
- 3. For Erlang/OTP 27.x users: upgrade to OTP 27.3.4.10 or later.
- 4. For Erlang/OTP 28.x users: upgrade to OTP 28.4.2 or later.
- 5. Alternatively, if using inets standalone: upgrade to inets 9.1.0.6, 9.3.2.4, or 9.6.2 depending on your base OTP version.
- 6. After upgrading, verify the inets version matches one of the fixed releases by checking the inets app version in the Erlang shell: 'application:version(inets).'
- 7. Test that CGI script access controls now correctly enforce directory-based authorization rules.
- 8. Review and test any CGI scripts that were previously protected by directory rules to confirm they now require proper authentication.
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation4.0 h
- Implementation12.0 h
- Testing8.0 h
- Review / QA4.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $7,808.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-28808 — 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-28808 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