CVE-2026-22096 Overview
CVE-2026-22096 describes a missing authentication flaw in a webserver listening on TCP port 8090. The service exposes administrative endpoints without requiring credentials. Attackers with network access can read sensitive configuration data, including stored passwords. The same endpoints permit arbitrary file uploads, providing a foothold for further compromise. The issue maps to [CWE-306] Missing Authentication for Critical Function. The Dutch Institute for Vulnerability Disclosure (DIVD) published details in advisory DIVD-2026-00001.
Critical Impact
Unauthenticated network attackers can retrieve configured passwords and upload files, leading to full confidentiality, integrity, and availability compromise.
Affected Products
Specific vendor and product identifiers were not published in the NVD record at the time of writing. Refer to the DIVD Security Advisory DIVD-2026-00001 for the current list of impacted systems.
Discovery Timeline
- 2026-07-13 - CVE-2026-22096 published to NVD
- 2026-07-13 - Last updated in NVD database
Technical Details for CVE-2026-22096
Vulnerability Analysis
The webserver on port 8090 accepts HTTP requests without validating any authentication token, session cookie, or API key. Any client that can reach the port can invoke administrative endpoints directly. The advisory identifies two distinct impact classes: sensitive information disclosure and unauthorized file upload. Disclosure endpoints return configuration data that includes stored passwords in retrievable form. Upload endpoints accept attacker-controlled files without verifying identity, permission, or file type context.
An attacker who retrieves stored credentials can pivot to adjacent services that reuse those secrets. An attacker who uploads files can stage payloads for later execution or overwrite legitimate assets consumed by the application. The combination enables a full compromise chain from initial reconnaissance to persistence.
Root Cause
The root cause is the absence of an authentication layer in front of privileged HTTP endpoints. The server does not enforce access control before serving configuration content or accepting uploads. This is a design-level control gap rather than an implementation bug in a specific handler.
Attack Vector
Exploitation requires network reachability to port 8090 and no user interaction. An attacker issues standard HTTP requests to enumerate endpoints, read configuration responses, and submit multipart upload requests. No credentials, tokens, or prior access are required. See the DIVD Security Advisory DIVD-2026-00001 for endpoint-level detail.
Detection Methods for CVE-2026-22096
Indicators of Compromise
- Unexpected inbound HTTP connections to TCP port 8090 from external or non-administrative source addresses.
- HTTP GET requests to configuration or password-related paths returning 200 OK with credential material in the response body.
- HTTP POST or PUT requests to upload endpoints on port 8090 originating from unknown clients.
- New or modified files in the webserver upload directory that do not correlate with change management records.
Detection Strategies
- Inspect webserver access logs for unauthenticated requests to sensitive endpoints on port 8090 and alert on any request lacking an expected authentication header.
- Deploy network intrusion detection signatures that flag HTTP traffic to port 8090 originating outside a defined administrative subnet.
- Perform periodic external scans to confirm port 8090 is not exposed to untrusted networks.
Monitoring Recommendations
- Forward webserver and host logs to a central analytics platform and baseline normal request patterns to port 8090.
- Monitor file system events on the upload directory and correlate writes with authenticated administrative activity.
- Track outbound connections from the affected host that may indicate post-exploitation staging using uploaded files.
How to Mitigate CVE-2026-22096
Immediate Actions Required
- Restrict network access to port 8090 using host and perimeter firewalls so only trusted management hosts can connect.
- Rotate any credentials that were configured on the affected system, since disclosure through the unauthenticated endpoints must be assumed.
- Audit the upload directory and remove files that cannot be tied to a legitimate administrative action.
- Review the DIVD Security Advisory DIVD-2026-00001 for vendor-specific remediation guidance.
Patch Information
The NVD entry does not list a vendor patch reference at the time of publication. Consult the DIVD Security Advisory DIVD-2026-00001 for the current fix status and vendor coordination updates.
Workarounds
- Place the service behind a reverse proxy that enforces authentication before forwarding requests to port 8090.
- Bind the webserver to a loopback or management-only interface if remote administration is not required.
- Apply network segmentation so the affected host is unreachable from user and internet-facing networks until a patch is available.
# Example: restrict port 8090 to a management subnet using iptables
iptables -A INPUT -p tcp --dport 8090 -s 10.0.10.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 8090 -j DROP
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

