Description
In the Linux kernel, the following vulnerability has been resolved:

sctp: auth: verify auth requirement when auth_chunk is NULL

sctp_auth_chunk_verify() returns true unconditionally when
chunk->auth_chunk is NULL, silently skipping authentication.
This is incorrect when:

1. skb_clone() failed in the BH receive path, leaving auth_chunk
NULL. In sctp_endpoint_bh_rcv() asoc is NULL for new
connections, so the early sctp_auth_recv_cid() check cannot
catch this.

2. No AUTH chunk precedes COOKIE-ECHO, so skb_clone() is never
called and auth_chunk remains NULL.

Fix by checking sctp_auth_recv_cid() when auth_chunk is NULL:
if authentication is required, return false to drop the chunk;
otherwise continue normally.
Published: 2026-08-10
Score: 9.8 Critical
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The vulnerability in the Linux kernel’s SCTP implementation causes the authentication verification routine to always return true when it encounters a null authentication chunk. This shortens authentication checks and leads to silently skipping authentication, allowing an attacker to send data or establish connections without proper validation. This defect exemplifies CWE-303, where the code improperly controls the generation of a security value, effectively bypassing required authentication checks.

Affected Systems

The flaw affects the Linux kernel, specifically the SCTP subsystem. No specific kernel version numbers are provided in the advisory, so all versions of the kernel that include the affected sctp_auth_chunk_verify path may be vulnerable until patched. should verify that their running kernel contains the latest security patches from the distribution maintainers.

Risk and Exploitability

The advisory provides a CVSS score of 9.8 and an EPSS score of < 1%. It is not listed in the CISA KEV catalog. The flaw allows an attacker to bypass authentication over the network, resulting in significant impact if an SCTP service is exposed to untrusted traffic. The likely attack vector is remote network exploitation, where an attacker sends crafted SCTP packets that trigger the buggy code path. The low EPSS score indicates that exploitation is currently unlikely, but the existence of the vulnerability means that a determined attacker could still attempt to exploit it if they can direct traffic to a vulnerable service.

Generated by OpenCVE AI on August 14, 2026 at 00:12 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply the latest patch to the Linux kernel from your distribution’s security updates.
  • If a patch is unavailable, disable SCTP processing in the kernel or at the application level to prevent the vulnerable code path from being executed.
  • Consider moving to a different transport protocol if SCTP is not required for your services.

Generated by OpenCVE AI on August 14, 2026 at 00:12 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DLA Debian DLA DLA-4745-1 linux-6.12 security update
History

Wed, 19 Aug 2026 16:45:00 +0000


Thu, 13 Aug 2026 22:45:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 7.0, 'vector': 'CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H'}

cvssV3_1

{'score': 9.8, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H'}


Thu, 13 Aug 2026 05:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-306

Wed, 12 Aug 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-303
References
Metrics threat_severity

None

cvssV3_1

{'score': 7.0, 'vector': 'CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H'}

threat_severity

Moderate


Mon, 10 Aug 2026 15:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-306

Mon, 10 Aug 2026 12:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: sctp: auth: verify auth requirement when auth_chunk is NULL sctp_auth_chunk_verify() returns true unconditionally when chunk->auth_chunk is NULL, silently skipping authentication. This is incorrect when: 1. skb_clone() failed in the BH receive path, leaving auth_chunk NULL. In sctp_endpoint_bh_rcv() asoc is NULL for new connections, so the early sctp_auth_recv_cid() check cannot catch this. 2. No AUTH chunk precedes COOKIE-ECHO, so skb_clone() is never called and auth_chunk remains NULL. Fix by checking sctp_auth_recv_cid() when auth_chunk is NULL: if authentication is required, return false to drop the chunk; otherwise continue normally.
Title sctp: auth: verify auth requirement when auth_chunk is NULL
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-08-19T16:32:51.209Z

Reserved: 2026-07-30T09:28:09.380Z

Link: CVE-2026-68300

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-10T13:20:19.560

Modified: 2026-08-19T17:20:41.187

Link: CVE-2026-68300

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-08-10T00:00:00Z

Links: CVE-2026-68300 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-14T00:15:04Z

Weaknesses
  • CWE-303

    Incorrect Implementation of Authentication Algorithm