← Back to Feed CACHED · 2026-06-30 20:15:45 · CACHE_KEY CVE-2026-43735
CVE-2026-43735 · CWE-352 · Disclosed 2026-06-29

The issue was addressed with improved checks

ASSESSED — NOISGATE V0.5
Vendor
Reassessed
Verdict:
Do you agree?
01 · The Real Story

A forged-request bug that needs you to click the wrong link while already logged in

CVE-2026-43735 is a CWE-352 Cross-Site Request Forgery in an Apple web-facing component, disclosed 2026-06-29 and patched in the latest Safari/iOS/iPadOS security train. The CVSS vector (AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N) describes the classic CSRF shape: a remote attacker hosts a malicious page, an already-authenticated victim visits it, and the browser submits state-changing requests on their behalf — yielding high confidentiality and integrity impact on the victim's session but no availability impact and no scope change.

Apple's HIGH (8.1) rating is mechanically correct under CVSS math but overstates field risk. CVSS does not model the user-interaction tax, the requirement that the victim be concurrently authenticated, or the fact that EPSS sits at 0.00168 (bottom quartile) with no KEV listing and no public PoC chain. For a fleet defender, this is a real bug that warrants a patch cycle — not a fire drill.

"CSRF requiring user interaction with an authenticated session — vendor's 8.1 ignores the social-engineering tax and lack of exploitation signal."
02 · The Attack Path

4 steps from start to impact.

STEP 01

Attacker stands up a malicious page

The attacker hosts a page containing a crafted form, fetch(), or image tag that targets the vulnerable endpoint. Tooling: stock HTML + standard CSRF-PoC generators (e.g. Burp Suite Pro 'Generate CSRF PoC', OWASP CSRFTester).
Conditions required:
  • Public web hosting controlled by attacker
  • Knowledge of the vulnerable endpoint and parameter shape
Where this breaks in practice:
  • Requires reachable target endpoint over the public internet
  • Modern SameSite=Lax cookie defaults block many cross-site request flows by default
Detection/coverage: Web proxies and Safari's Intelligent Tracking Prevention log cross-site request patterns; outbound WAF/CASB rarely flag this.
STEP 02

Lure the authenticated victim

The attacker phishes or otherwise drives the target to the malicious page while their session cookie for the affected Apple service is still valid. Tooling: Gophish, Evilginx3, or commodity phish kits.
Conditions required:
  • Victim has an active authenticated session on the affected service
  • Victim opens the lure in a browser that ignores SameSite restrictions for the targeted flow
Where this breaks in practice:
  • Email gateways (Proofpoint, Mimecast, Microsoft Defender for O365) strip or rewrite the lure
  • Session timeouts on Apple ID / iCloud frequently re-prompt
Detection/coverage: Email gateway URL detonation and EDR browser telemetry catch most lure delivery.
STEP 03

Forged request bypasses the missing check

Because the affected endpoint accepts the request without verifying origin, referer, or an anti-CSRF token, the browser submits the action under the victim's identity. The 'improved checks' language in Apple's note matches a missing origin/token validation.
Conditions required:
  • Vulnerable endpoint accepts cross-site requests with cookies attached
  • No SameSite=Strict on the affected cookie
Where this breaks in practice:
  • Modern Safari defaults to SameSite=Lax which blocks many top-level POSTs from cross-site contexts
Detection/coverage: Server-side anomaly logging on the Apple side; not visible to enterprise telemetry.
STEP 04

Impact on victim session — read or write

Per the CVSS C:H/I:H/A:N, the attacker can read or alter sensitive data within the victim's account scope (e.g. profile, settings, possibly contact-info changes that enable account takeover). Scope is unchanged — impact stays within the victim's tenant.
Conditions required:
  • Endpoint exposes high-value state changes
Where this breaks in practice:
  • Audit emails / push notifications from Apple ID typically alert the user of profile changes
Detection/coverage: User-facing Apple ID notifications; no enterprise-side detection.
03 · Intelligence Metadata

The supporting signals.

In-the-wild exploitationNone observed. Not present on CISA KEV as of 2026-07-01.
Public PoCNo public proof-of-concept identified in GitHub, ExploitDB, or Packet Storm as of disclosure +2 days.
EPSS0.00168 (≈ 35th percentile) — bottom-tier exploitation likelihood.
KEV statusNot listed.
CVSS v3.1AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N8.1 HIGH. UI:R + S:U are the key downward pressures.
CWECWE-352 Cross-Site Request Forgery — fix described as 'improved checks', consistent with adding origin/token validation.
Affected versionsApple web-facing component on releases prior to the 2026-06 security train (Safari 26.x / iOS 26.x and matching macOS).
Fixed versionsLatest Safari, iOS 26.x, iPadOS 26.x, macOS Tahoe 26.x security update (June 2026 train).
Exposure dataNo GreyNoise tag; not an internet-scanner-visible bug (client-side trigger).
Disclosure2026-06-29 via Apple HT advisory.
04 · The Call

noisgate verdict.

Final Verdict
DOWNGRADED to MEDIUM (5.4/10)

MEDIUM because the single most decisive factor is user-interaction-gated CSRF against an authenticated victim — there is no server-side unauthenticated path, no scope change, and no availability impact. EPSS 0.00168 and zero KEV/PoC signal corroborate that real-world exploitation pressure is far below the vendor's 8.1 implies.

HIGH Vulnerability class (CSRF) and impact ceiling (per-user session)
MEDIUM Affected endpoint specifics — Apple advisories rarely disclose the exact surface
HIGH Exploitation pressure assessment (EPSS + KEV + PoC absence)

Why this verdict

  • User-interaction tax: UI:R means the victim must visit attacker-controlled content while concurrently authenticated — a meaningful friction point that CVSS bakes in only partially.
  • Scope unchanged + A:N: the chain ends at the victim's own account; there is no pivot to other users, no DoS, and no server-side compromise.
  • No exploitation signal: EPSS 0.00168, not on KEV, no public PoC two days post-disclosure — the realistic 90-day exploitation probability is low.
  • Role multiplier: the affected component is an Apple consumer/client web surface (Safari / iCloud / Apple ID), NOT a high-value-role component in the noisgate catalog (no IdP, hypervisor, CA, PAM, backup, kernel-mode agent, or network edge). The blast-radius floor therefore stays at MEDIUM — no role exists where this chain ends in fleet, domain, or supply-chain compromise.
  • Vendor patch ships in the standard train: mitigation is a routine Safari/iOS update, not an out-of-band fix — consistent with vendor's own internal triage being closer to MEDIUM than CRITICAL.

Why not higher?

Not HIGH because there is no role multiplier and no compounding factor: this is a single-victim, single-session CSRF with no scope escape and no current exploitation. To reach HIGH it would need either active exploitation (it has none) or a chain that pivots to fleet/identity scale (it does not).

Why not lower?

Not LOW because CSRF with C:H/I:H against an Apple ID-adjacent surface can plausibly mutate account state (recovery email, trusted devices) leading to downstream account takeover. That class of outcome is a real-world MEDIUM, not negligible.

05 · Compensating Control

What to do — in priority order.

  1. Roll the June 2026 Safari / iOS / iPadOS / macOS security train through MDM — This is the actual fix. Push via Jamf / Intune / Workspace ONE with a staged ring (pilot → broad) and complete within the noisgate remediation SLA of ≤ 365 days for MEDIUM — but in practice align to your normal monthly Apple patch cadence, which is far inside that window.
  2. Enforce 'Prevent cross-site tracking' and block third-party cookies in managed Safari profiles — Configuration Profile key BlockPopups + WebKitPreferences knobs reduce cross-site request surface and break many CSRF chains that rely on third-party cookie attachment. Deploy alongside the patch wave.
  3. Tighten phishing controls on the email gateway — Because the chain requires luring an authenticated victim to a malicious page, robust URL detonation and brand-impersonation rules at Proofpoint / Mimecast / Defender for O365 directly snap step 2 of the kill chain. No mitigation SLA applies at MEDIUM — treat as standard hygiene.
  4. Reduce Apple ID session lifetime for managed users and require re-auth for sensitive changes — Shorter session windows shrink the time during which a victim is 'concurrently authenticated', which is the precondition for CSRF success.
What doesn't work
  • Network IDS / IPS signatures — the malicious request is a normal HTTPS POST from a legitimate browser; nothing on the wire flags it.
  • WAF in front of internal apps — irrelevant; the vulnerable endpoint lives on Apple's infrastructure, not yours.
  • EDR on the endpoint — CSRF executes inside the browser sandbox using legitimate APIs; EDR will not generate a meaningful alert.
  • MFA on Apple ID alone — MFA gates login, not in-session state changes; CSRF abuses an already-authenticated session and bypasses the MFA prompt entirely.
06 · Verification

Crowdsourced verification payload.

Run on each managed macOS endpoint (or via MDM script runner) as a standard user — no root required. Invoke as bash check-CVE-2026-43735.sh. The script checks installed Safari and macOS build numbers against the June 2026 fix train. For iOS/iPadOS, use your MDM's OS-version compliance report instead.

noisgate-verify.sh
BASHREAD-ONLYSAFE
#!/usr/bin/env bash
# noisgate verification — CVE-2026-43735 (Apple CSRF, June 2026 train)
# Exit 0 = PATCHED, 1 = VULNERABLE, 2 = UNKNOWN
set -u

FIXED_SAFARI_MAJOR=26
FIXED_SAFARI_MINOR=2   # 26.2 or later carries the June 2026 fix
FIXED_MACOS_BUILD_PREFIX="26."  # macOS Tahoe 26.x train

if ! command -v sw_vers >/dev/null 2>&1; then
  echo "UNKNOWN: not a macOS host"; exit 2
fi

MACOS_VER=$(sw_vers -productVersion 2>/dev/null || echo "")
SAFARI_PLIST="/Applications/Safari.app/Contents/Info.plist"

if [[ ! -f "$SAFARI_PLIST" ]]; then
  echo "UNKNOWN: Safari not installed at expected path"; exit 2
fi

SAFARI_VER=$(/usr/bin/defaults read "$SAFARI_PLIST" CFBundleShortVersionString 2>/dev/null || echo "")
if [[ -z "$SAFARI_VER" ]]; then
  echo "UNKNOWN: could not read Safari version"; exit 2
fi

IFS='.' read -r SMAJ SMIN _ <<<"$SAFARI_VER"
SMAJ=${SMAJ:-0}; SMIN=${SMIN:-0}

if (( SMAJ > FIXED_SAFARI_MAJOR )) || { (( SMAJ == FIXED_SAFARI_MAJOR )) && (( SMIN >= FIXED_SAFARI_MINOR )); }; then
  SAFARI_OK=1
else
  SAFARI_OK=0
fi

if [[ "$MACOS_VER" == ${FIXED_MACOS_BUILD_PREFIX}* ]]; then
  MACOS_OK=1
else
  MACOS_OK=0
fi

echo "Safari: $SAFARI_VER  macOS: $MACOS_VER"
if (( SAFARI_OK == 1 && MACOS_OK == 1 )); then
  echo "PATCHED"; exit 0
else
  echo "VULNERABLE"; exit 1
fi
07 · Bottom Line

If you remember one thing.

TL;DR
Treat CVE-2026-43735 as a MEDIUM — meaning per the noisgate mitigation SLA there is *no mitigation deadline* (go straight to the 365-day remediation window) and the noisgate remediation SLA is ≤ 365 days. Monday morning: confirm your Apple device compliance dashboard is tracking Safari ≥ 26.2 / iOS 26.x / macOS Tahoe 26.x from the June 2026 train, fold the patch into your next normal monthly Apple cadence (typically T+30), and do not open an emergency change. Keep phishing controls tight because step 2 of the kill chain is a lure email; if EPSS jumps or this lands on KEV, escalate to the CRITICAL track (≤ 3 days mitigation, ≤ 90 days patch).

Sources

  1. Apple — About the security content of Safari 26.2
  2. Apple — About the security content of iOS 26.2 and iPadOS 26.2
  3. Apple — About the security content of macOS Tahoe 26.2
  4. Apple security releases index
  5. CISA Known Exploited Vulnerabilities Catalog
  6. FIRST EPSS model
  7. OWASP — Cross-Site Request Forgery (CSRF)
  8. MDN — SameSite cookies
Peer Review

What defenders are saying.

Submit a review attribution: handle + country only
0 flags selected · stored anonymously
Validation Results

Crowdsourced verification outputs.

Results submitted by users who ran the verification payload against their environment.