CVE-2026-83333 Overview
CVE-2026-83333 is a denial-of-service vulnerability in the Oracle Net Services component of Oracle Database Server. The flaw affects supported versions 23.4.0 through 23.26.3. An unauthenticated remote attacker with network access via Oracle Net can trigger a hang or repeatable crash of the Oracle Net Services listener. The vulnerability is categorized under [CWE-400] Uncontrolled Resource Consumption. Oracle disclosed the issue in its September 2026 security alert cycle.
Critical Impact
A network-based, unauthenticated attacker can cause complete denial of service against Oracle Net Services, disrupting all database client connectivity that depends on the listener.
Affected Products
- Oracle Database Server 23.4.0 through 23.26.3
- Oracle Net Services component
- Deployments exposing the Oracle Net listener over the network
Discovery Timeline
- 2026-09-15 - CVE-2026-83333 published to the National Vulnerability Database
- 2026-09-16 - Last updated in NVD database
Technical Details for CVE-2026-83333
Vulnerability Analysis
The vulnerability resides in the Oracle Net Services component, which handles client-to-server database connectivity over the Oracle Net protocol. An attacker with only network reachability to the listener can send crafted traffic that forces the service into a hang state or a repeatable crash condition.
Exploitation requires no authentication, no user interaction, and low attack complexity. Successful attacks impact only availability. Confidentiality and integrity of database contents remain unaffected. Because Oracle Net Services is the entry point for all database clients, an outage propagates across every application dependent on the affected instance.
The issue is classified as [CWE-400] Uncontrolled Resource Consumption, indicating the service fails to properly bound resource use when processing attacker-controlled input. EPSS data at publication rates exploitation probability as low, though this may change as scanning activity develops.
Root Cause
The root cause lies within Oracle Net Services request handling. Improper resource management during protocol processing allows an attacker to exhaust or corrupt internal state, producing a listener hang or crash. Oracle has not publicly released technical details of the defective code path.
Attack Vector
The attack vector is remote network access to the Oracle Net listener, typically TCP port 1521 or a customer-configured equivalent. The attacker crafts Oracle Net protocol messages that trigger the resource-exhaustion condition. No credentials, prior access, or victim interaction are required. Repeated requests produce a persistent denial-of-service state until the service is restarted or patched.
No public proof-of-concept exploit or in-the-wild exploitation has been reported. See the Oracle Security Alert for authoritative technical guidance.
Detection Methods for CVE-2026-83333
Indicators of Compromise
- Unexpected TNS- protocol errors or listener process crashes in listener.log
- Abrupt spikes in half-open or malformed connections to TCP 1521 from untrusted sources
- Repeated client connectivity failures accompanied by listener restart events
- Abnormal CPU or memory consumption in the tnslsnr process prior to failure
Detection Strategies
- Monitor Oracle listener logs for repeated abnormal terminations and correlate with source IP addresses
- Deploy network intrusion detection signatures for malformed Oracle Net traffic patterns targeting port 1521
- Baseline normal Oracle Net client behavior and alert on anomalous request rates or malformed packet sequences
- Track service availability metrics and generate alerts when listener downtime deviates from operational baselines
Monitoring Recommendations
- Forward listener.log, alert.log, and host process telemetry to a centralized log platform for correlation
- Enable Oracle Net Valid Node Checking and log rejected connections to identify reconnaissance activity
- Instrument synthetic connection probes to detect listener hangs before end users report outages
- Review firewall and flow logs for external sources reaching database listener ports
How to Mitigate CVE-2026-83333
Immediate Actions Required
- Apply the Oracle Critical Patch Update or Security Alert fix referenced in the September 2026 advisory to all affected 23.x instances
- Restrict network access to Oracle Net listener ports so only authorized application servers can connect
- Enable Oracle Net Valid Node Checking to enforce allow-lists at the listener layer
- Prepare listener restart runbooks and failover procedures in case exploitation attempts are observed
Patch Information
Oracle addressed CVE-2026-83333 in the September 2026 Critical Patch Update / Security Alert cycle. Refer to the Oracle Security Alert for patch identifiers and version-specific instructions. Apply fixes to all Oracle Database Server deployments in the affected range 23.4.0 through 23.26.3.
Workarounds
- Place the database listener behind a firewall or bastion that terminates and validates client sessions
- Restrict listener exposure to internal management networks and remove any direct internet exposure
- Configure tcp.validnode_checking, tcp.invited_nodes, and tcp.excluded_nodes in sqlnet.ora to enforce source IP controls
- Increase listener process monitoring and automated restart thresholds until patching is complete
# Example sqlnet.ora hardening to restrict listener sources
tcp.validnode_checking = yes
tcp.invited_nodes = (10.0.10.11, 10.0.10.12, 10.0.10.13)
tcp.excluded_nodes = (0.0.0.0/0)
# Reload the listener after changes
lsnrctl reload
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

