24h | 7d | 30d

Overview

  • Apple
  • iOS and iPadOS

11 Feb 2026
Published
02 Apr 2026
Updated

CVSS
Pending
EPSS
0.33%

KEV

Description

A logic issue was addressed with improved checks. This issue is fixed in iOS 18.7.5 and iPadOS 18.7.5, iOS 26.3 and iPadOS 26.3, macOS Sequoia 15.7.4, macOS Sonoma 14.8.4, macOS Tahoe 26.3, tvOS 26.3, visionOS 26.3, watchOS 26.3. An attacker in a privileged network position may be able to intercept network traffic.

Statistics

  • 1 Post

Last activity: 18 hours ago

Fediverse

Profile picture fallback

We must go deeper...

----

After reviewing Apple’s Tahoe security advisories, there is one CVE that stands out as unusually close to what we are seeing.

The strongest candidate is **CVE-2026-64735**, fixed in **macOS Tahoe 26.6**:

> **Kernel** — “A remote attacker may be able to bypass network filters.” Apple says it fixed an inconsistent-state issue through improved state management. ([Apple Support][1])

That is much more interesting than a generic kernel CVE because it explicitly involves **network filters**, it is categorized by Apple under the **Kernel**, and the fix landed in **26.6**, exactly the release family containing your `xnu-12377.161.x` kernel.

The public version progression is:

26.3 → xnu-12377.81.4
26.4 → xnu-12377.101.15
26.5 → xnu-12377.121.6
26.6 → xnu-12377.161.13
26.6.2 → xnu-12377.161.14 <-- your kernel

Your exact 26.6.2 kernel is indeed `12377.161.14`. ([macOSdb][2])

That gives us a very plausible chronology:

26.4 / .101
substantial CFIL changes begin

26.5 / .121
substantial CFIL datagram lifetime/locking hardening
cfil_info <-> soflow relationship guarded more aggressively
global cfil_lck_rw shared/exclusive use increases

26.6 / .161
CVE-2026-64735:
kernel network-filter bypass fixed
"improved state management"

26.6.2 / .161.14
your machine:
Application Firewall → CFIL
cfil_lck_rw contention
100–1800 ms packet-delivery stalls

That is not proof that CVE-2026-64735 caused the regression, but it is now the **first security fix I would ask Apple engineering about**.

There are several other Tahoe security items in the same neighborhood, but they are substantially weaker candidates:

| Release | CVE / change | Relevance |
| ---------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------- |
| **26.6** | **CVE-2026-64735 — Kernel: remote attacker may bypass network filters; improved state management** | **Very high** |
| 26.6 | CVE-2026-28982 — Kernel remote race; fixed with improved locking | Medium, but no public indication it is CFIL |
| **26.5.1** | Apple fixed unexpected shutdowns involving **content-filtering Network Extensions** on M5 Macs | **High architectural relevance**, although not your hardware/problem |
| 26.5 | CVE-2026-28961 — Network Extensions, sensitive-info exposure | Related subsystem, probably unrelated mechanism |
| 26.5 | CVE-2026-28906 — Networking, IP-address tracking/state management | Low–medium |
| 26.3 | CVE-2026-20671 — Kernel, privileged-network attacker may intercept traffic | Networking/kernel related, but probably a different path |
| 26.1 | CVE-2025-43413 — libxpc could reveal system-wide network connections | Almost certainly unrelated |

Apple explicitly acknowledges in the **26.5.1 release notes** that it had a bug where certain **content-filtering network extensions could unexpectedly shut down Macs**. ([Apple Support][3]) That isn't your bug and was M5-specific, but it is significant evidence that Apple was actively fixing serious content-filter lifecycle problems immediately before 26.6.

There is also **CVE-2026-28982** in 26.6:

> A remote user may cause system termination or kernel-memory corruption; Apple says a race condition was addressed through **improved locking**. ([Apple Support][1])

I would not connect that one to CFIL yet. Apple gives us no component below “Kernel,” and hundreds of places in XNU could fit that description.

By comparison, **CVE-2026-64735 says “network filters” explicitly**. That makes it qualitatively different.

The public XNU source also validates why a security hardening change here could produce your performance regression. `content_filter.c` says the subsystem uses **one global `cfil_lck_rw`**, with normal data flow taking it shared; your symbolicated 26.6.2 stackshots show lifecycle/GC operations taking that same lock exclusively. The source further describes filtered data being queued and reinjected after filtering decisions.

And your firewall-off control is particularly important against that background:

Application Firewall ON
CFIL active
CFIL ~ tens of thousands
global cfil_lck_rw contention
severe latency

Application Firewall OFF
CFIL active_count = 0
CFIL population = 0

SOFLOW alone > 190,000
including very large reclamation bursts

no packet drain slowdown
no CPU/GPU/disk/network degradation

That makes an ordinary SOFLOW-GC scalability bug much less likely. The extra failure-producing ingredient is **CFIL**.

There is one limitation that prevents us from going from “very plausible” to “proven”: Apple has **not published the `12377.161.x` XNU source yet**. The newest public source we've been comparing is `12377.121.6` from 26.5. Apple's public GitHub commits are release imports rather than the actual internal commits, so they don't expose:

rdar://...
Fix network filter state race
CVE-2026-64735

or a patch that we can definitively associate with that CVE.

So we cannot currently establish:

CVE-2026-64735

specific change to cfil_lck_rw

your regression

But the circumstantial chain is unusually strong:

Apple discovers network-filter security defect

security fix requires improved state management

ships in 26.6

26.6 uses new unpublished XNU .161 branch

your .161 kernel shows severe CFIL lifecycle locking contention

turning off Apple's firewall eliminates CFIL and eliminates symptom

SOFLOW by itself can reach >190k without problem

I would add **CVE-2026-64735 by number** to the Apple Feedback report and phrase it carefully:

> Because this regression occurs only while the built-in Application Firewall has CFIL active, and symbolicated stackshots implicate global CFIL lifecycle locking, please investigate whether the state-management changes associated with CVE-2026-64735 or related network-filter hardening introduced excessive contention or retained-flow behavior in the `12377.161.x` kernel branch.

That points Apple's kernel/networking engineer directly at an internal change set they can see and we cannot.

[1]: support.apple.com/pt-br/128067 "Sobre o conteúdo de segurança do macOS Tahoe 26.6 - Suporte da Apple (BR)"
[2]: macosdb.com/macos/release/26.6 "macOS 26.6.2 Tahoe RC — macOSdb"
[3]: support.apple.com/en-sa/122868 "What's new in the updates for macOS Tahoe 26 - Apple Support (SA)"

  • 0
  • 0
  • 0
  • 18h ago

Overview

  • Apple
  • iOS and iPadOS

04 Nov 2025
Published
02 Apr 2026
Updated

CVSS
Pending
EPSS
0.58%

KEV

Description

An access issue was addressed with additional sandbox restrictions. This issue is fixed in iOS 26.1 and iPadOS 26.1, macOS Sequoia 15.7.2, macOS Sonoma 14.8.2, macOS Tahoe 26.1, tvOS 26.1, visionOS 26.1, watchOS 26.1. A sandboxed app may be able to observe system-wide network connections.

Statistics

  • 1 Post

Last activity: 18 hours ago

Fediverse

Profile picture fallback

We must go deeper...

----

After reviewing Apple’s Tahoe security advisories, there is one CVE that stands out as unusually close to what we are seeing.

The strongest candidate is **CVE-2026-64735**, fixed in **macOS Tahoe 26.6**:

> **Kernel** — “A remote attacker may be able to bypass network filters.” Apple says it fixed an inconsistent-state issue through improved state management. ([Apple Support][1])

That is much more interesting than a generic kernel CVE because it explicitly involves **network filters**, it is categorized by Apple under the **Kernel**, and the fix landed in **26.6**, exactly the release family containing your `xnu-12377.161.x` kernel.

The public version progression is:

26.3 → xnu-12377.81.4
26.4 → xnu-12377.101.15
26.5 → xnu-12377.121.6
26.6 → xnu-12377.161.13
26.6.2 → xnu-12377.161.14 <-- your kernel

Your exact 26.6.2 kernel is indeed `12377.161.14`. ([macOSdb][2])

That gives us a very plausible chronology:

26.4 / .101
substantial CFIL changes begin

26.5 / .121
substantial CFIL datagram lifetime/locking hardening
cfil_info <-> soflow relationship guarded more aggressively
global cfil_lck_rw shared/exclusive use increases

26.6 / .161
CVE-2026-64735:
kernel network-filter bypass fixed
"improved state management"

26.6.2 / .161.14
your machine:
Application Firewall → CFIL
cfil_lck_rw contention
100–1800 ms packet-delivery stalls

That is not proof that CVE-2026-64735 caused the regression, but it is now the **first security fix I would ask Apple engineering about**.

There are several other Tahoe security items in the same neighborhood, but they are substantially weaker candidates:

| Release | CVE / change | Relevance |
| ---------- | -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------- |
| **26.6** | **CVE-2026-64735 — Kernel: remote attacker may bypass network filters; improved state management** | **Very high** |
| 26.6 | CVE-2026-28982 — Kernel remote race; fixed with improved locking | Medium, but no public indication it is CFIL |
| **26.5.1** | Apple fixed unexpected shutdowns involving **content-filtering Network Extensions** on M5 Macs | **High architectural relevance**, although not your hardware/problem |
| 26.5 | CVE-2026-28961 — Network Extensions, sensitive-info exposure | Related subsystem, probably unrelated mechanism |
| 26.5 | CVE-2026-28906 — Networking, IP-address tracking/state management | Low–medium |
| 26.3 | CVE-2026-20671 — Kernel, privileged-network attacker may intercept traffic | Networking/kernel related, but probably a different path |
| 26.1 | CVE-2025-43413 — libxpc could reveal system-wide network connections | Almost certainly unrelated |

Apple explicitly acknowledges in the **26.5.1 release notes** that it had a bug where certain **content-filtering network extensions could unexpectedly shut down Macs**. ([Apple Support][3]) That isn't your bug and was M5-specific, but it is significant evidence that Apple was actively fixing serious content-filter lifecycle problems immediately before 26.6.

There is also **CVE-2026-28982** in 26.6:

> A remote user may cause system termination or kernel-memory corruption; Apple says a race condition was addressed through **improved locking**. ([Apple Support][1])

I would not connect that one to CFIL yet. Apple gives us no component below “Kernel,” and hundreds of places in XNU could fit that description.

By comparison, **CVE-2026-64735 says “network filters” explicitly**. That makes it qualitatively different.

The public XNU source also validates why a security hardening change here could produce your performance regression. `content_filter.c` says the subsystem uses **one global `cfil_lck_rw`**, with normal data flow taking it shared; your symbolicated 26.6.2 stackshots show lifecycle/GC operations taking that same lock exclusively. The source further describes filtered data being queued and reinjected after filtering decisions.

And your firewall-off control is particularly important against that background:

Application Firewall ON
CFIL active
CFIL ~ tens of thousands
global cfil_lck_rw contention
severe latency

Application Firewall OFF
CFIL active_count = 0
CFIL population = 0

SOFLOW alone > 190,000
including very large reclamation bursts

no packet drain slowdown
no CPU/GPU/disk/network degradation

That makes an ordinary SOFLOW-GC scalability bug much less likely. The extra failure-producing ingredient is **CFIL**.

There is one limitation that prevents us from going from “very plausible” to “proven”: Apple has **not published the `12377.161.x` XNU source yet**. The newest public source we've been comparing is `12377.121.6` from 26.5. Apple's public GitHub commits are release imports rather than the actual internal commits, so they don't expose:

rdar://...
Fix network filter state race
CVE-2026-64735

or a patch that we can definitively associate with that CVE.

So we cannot currently establish:

CVE-2026-64735

specific change to cfil_lck_rw

your regression

But the circumstantial chain is unusually strong:

Apple discovers network-filter security defect

security fix requires improved state management

ships in 26.6

26.6 uses new unpublished XNU .161 branch

your .161 kernel shows severe CFIL lifecycle locking contention

turning off Apple's firewall eliminates CFIL and eliminates symptom

SOFLOW by itself can reach >190k without problem

I would add **CVE-2026-64735 by number** to the Apple Feedback report and phrase it carefully:

> Because this regression occurs only while the built-in Application Firewall has CFIL active, and symbolicated stackshots implicate global CFIL lifecycle locking, please investigate whether the state-management changes associated with CVE-2026-64735 or related network-filter hardening introduced excessive contention or retained-flow behavior in the `12377.161.x` kernel branch.

That points Apple's kernel/networking engineer directly at an internal change set they can see and we cannot.

[1]: support.apple.com/pt-br/128067 "Sobre o conteúdo de segurança do macOS Tahoe 26.6 - Suporte da Apple (BR)"
[2]: macosdb.com/macos/release/26.6 "macOS 26.6.2 Tahoe RC — macOSdb"
[3]: support.apple.com/en-sa/122868 "What's new in the updates for macOS Tahoe 26 - Apple Support (SA)"

  • 0
  • 0
  • 0
  • 18h ago

Overview

  • ImageMagick
  • ImageMagick

11 Jul 2026
Published
14 Jul 2026
Updated

CVSS v4.0
MEDIUM (4.8)
EPSS
0.17%

KEV

Description

ImageMagick before 7.1.2-26 and 6.9.13-51 is missing a check for the allowed memory allocation limit in matrix-backed operations such as -canny. An attacker can supply a crafted image that causes ImageMagick to allocate more memory than permitted by the configured policy, resulting in a denial of service.

Statistics

  • 1 Post
  • 3 Interactions

Last activity: 10 hours ago

Fediverse

Profile picture fallback

#Ubuntu 24.04.5 で #update

imagemagick (8:6.9.12.98+dfsg1-5.2ubuntu0.1~esm13)
CVE-2026-56366, CVE-2026-56368, CVE-2026-56370, CVE-2026-56371, CVE-2026-56373, CVE-2026-56378, CVE-2026-56379, CVE-2026-61465, CVE-2026-61857, CVE-2026-61863, CVE-2026-61864, CVE-2026-61865, CVE-2026-61866, CVE-2026-61870, CVE-2026-62946へのセキュリティ対応。
imagemagick-6-common imagemagick-6.q16
libmagickcore-6.q16-7-extra libmagickcore-6.q16-7t64
libmagickwand-6.q16-7t64

セキュリティ対応なのでお早めに。

#prattohome #更新

  • 2
  • 1
  • 0
  • 10h ago

Overview

  • ImageMagick
  • ImageMagick

15 Jul 2026
Published
15 Jul 2026
Updated

CVSS v4.0
LOW (2.1)
EPSS
0.10%

KEV

Description

ImageMagick before 7.1.2-26 and 6.9.13-51 contains a memory leak in color transformation to the log colorspace: when the operation fails, a small amount of memory is not released.

Statistics

  • 1 Post
  • 3 Interactions

Last activity: 10 hours ago

Fediverse

Profile picture fallback

#Ubuntu 24.04.5 で #update

imagemagick (8:6.9.12.98+dfsg1-5.2ubuntu0.1~esm13)
CVE-2026-56366, CVE-2026-56368, CVE-2026-56370, CVE-2026-56371, CVE-2026-56373, CVE-2026-56378, CVE-2026-56379, CVE-2026-61465, CVE-2026-61857, CVE-2026-61863, CVE-2026-61864, CVE-2026-61865, CVE-2026-61866, CVE-2026-61870, CVE-2026-62946へのセキュリティ対応。
imagemagick-6-common imagemagick-6.q16
libmagickcore-6.q16-7-extra libmagickcore-6.q16-7t64
libmagickwand-6.q16-7t64

セキュリティ対応なのでお早めに。

#prattohome #更新

  • 2
  • 1
  • 0
  • 10h ago

Overview

  • ImageMagick
  • ImageMagick

11 Jul 2026
Published
13 Jul 2026
Updated

CVSS v4.0
LOW (2.1)
EPSS
0.19%

KEV

Description

ImageMagick before 7.1.2-26 contains a memory leak vulnerability in the VIFF encoder when memory allocation fails. Attackers can trigger allocation failures by processing specially crafted VIFF images to exhaust available memory and cause denial of service.

Statistics

  • 1 Post
  • 3 Interactions

Last activity: 10 hours ago

Fediverse

Profile picture fallback

#Ubuntu 24.04.5 で #update

imagemagick (8:6.9.12.98+dfsg1-5.2ubuntu0.1~esm13)
CVE-2026-56366, CVE-2026-56368, CVE-2026-56370, CVE-2026-56371, CVE-2026-56373, CVE-2026-56378, CVE-2026-56379, CVE-2026-61465, CVE-2026-61857, CVE-2026-61863, CVE-2026-61864, CVE-2026-61865, CVE-2026-61866, CVE-2026-61870, CVE-2026-62946へのセキュリティ対応。
imagemagick-6-common imagemagick-6.q16
libmagickcore-6.q16-7-extra libmagickcore-6.q16-7t64
libmagickwand-6.q16-7t64

セキュリティ対応なのでお早めに。

#prattohome #更新

  • 2
  • 1
  • 0
  • 10h ago

Overview

  • ImageMagick
  • ImageMagick

30 Jul 2026
Published
30 Jul 2026
Updated

CVSS v3.1
MEDIUM (5.1)
EPSS
0.09%

KEV

Description

ImageMagick is free and open-source software used for editing and manipulating digital images. In versions prior to both 6.9.13-52 and 7.1.2-27, processing an extremely large JNX file on 32-bit platforms can cause an integer overflow, leading to a heap buffer over-write. This issue has been fixed in versions 6.9.13-52 and 7.1.2-27.

Statistics

  • 1 Post
  • 3 Interactions

Last activity: 10 hours ago

Fediverse

Profile picture fallback

#Ubuntu 24.04.5 で #update

imagemagick (8:6.9.12.98+dfsg1-5.2ubuntu0.1~esm13)
CVE-2026-56366, CVE-2026-56368, CVE-2026-56370, CVE-2026-56371, CVE-2026-56373, CVE-2026-56378, CVE-2026-56379, CVE-2026-61465, CVE-2026-61857, CVE-2026-61863, CVE-2026-61864, CVE-2026-61865, CVE-2026-61866, CVE-2026-61870, CVE-2026-62946へのセキュリティ対応。
imagemagick-6-common imagemagick-6.q16
libmagickcore-6.q16-7-extra libmagickcore-6.q16-7t64
libmagickwand-6.q16-7t64

セキュリティ対応なのでお早めに。

#prattohome #更新

  • 2
  • 1
  • 0
  • 10h ago

Overview

  • ImageMagick
  • ImageMagick

10 Jul 2026
Published
14 Jul 2026
Updated

CVSS v4.0
MEDIUM (4.8)
EPSS
0.17%

KEV

Description

ImageMagick before 7.1.2-18 contains a memory leak vulnerability in the META reader when processing APP1JPEG input paths. Attackers can trigger this memory leak by providing specially crafted APP1JPEG image files, causing denial of service through resource exhaustion.

Statistics

  • 1 Post
  • 3 Interactions

Last activity: 10 hours ago

Fediverse

Profile picture fallback

#Ubuntu 24.04.5 で #update

imagemagick (8:6.9.12.98+dfsg1-5.2ubuntu0.1~esm13)
CVE-2026-56366, CVE-2026-56368, CVE-2026-56370, CVE-2026-56371, CVE-2026-56373, CVE-2026-56378, CVE-2026-56379, CVE-2026-61465, CVE-2026-61857, CVE-2026-61863, CVE-2026-61864, CVE-2026-61865, CVE-2026-61866, CVE-2026-61870, CVE-2026-62946へのセキュリティ対応。
imagemagick-6-common imagemagick-6.q16
libmagickcore-6.q16-7-extra libmagickcore-6.q16-7t64
libmagickwand-6.q16-7t64

セキュリティ対応なのでお早めに。

#prattohome #更新

  • 2
  • 1
  • 0
  • 10h ago

Overview

  • ImageMagick
  • ImageMagick

11 Jul 2026
Published
13 Jul 2026
Updated

CVSS v4.0
MEDIUM (6.3)
EPSS
0.27%

KEV

Description

ImageMagick before 7.1.2-26 contains a heap use-after-free vulnerability caused by missing null check when parsing XMP profiles. Attackers can craft malicious image files with specially crafted XMP data to trigger the vulnerability and cause application crashes.

Statistics

  • 1 Post
  • 3 Interactions

Last activity: 10 hours ago

Fediverse

Profile picture fallback

#Ubuntu 24.04.5 で #update

imagemagick (8:6.9.12.98+dfsg1-5.2ubuntu0.1~esm13)
CVE-2026-56366, CVE-2026-56368, CVE-2026-56370, CVE-2026-56371, CVE-2026-56373, CVE-2026-56378, CVE-2026-56379, CVE-2026-61465, CVE-2026-61857, CVE-2026-61863, CVE-2026-61864, CVE-2026-61865, CVE-2026-61866, CVE-2026-61870, CVE-2026-62946へのセキュリティ対応。
imagemagick-6-common imagemagick-6.q16
libmagickcore-6.q16-7-extra libmagickcore-6.q16-7t64
libmagickwand-6.q16-7t64

セキュリティ対応なのでお早めに。

#prattohome #更新

  • 2
  • 1
  • 0
  • 10h ago

Overview

  • ImageMagick
  • ImageMagick

15 Jul 2026
Published
15 Jul 2026
Updated

CVSS v4.0
LOW (2.1)
EPSS
0.10%

KEV

Description

ImageMagick before 7.1.2-26 and 6.9.13-51 contains a memory leak in the hough lines operation: when a specific operation fails, a small memory leak occurs.

Statistics

  • 1 Post
  • 3 Interactions

Last activity: 10 hours ago

Fediverse

Profile picture fallback

#Ubuntu 24.04.5 で #update

imagemagick (8:6.9.12.98+dfsg1-5.2ubuntu0.1~esm13)
CVE-2026-56366, CVE-2026-56368, CVE-2026-56370, CVE-2026-56371, CVE-2026-56373, CVE-2026-56378, CVE-2026-56379, CVE-2026-61465, CVE-2026-61857, CVE-2026-61863, CVE-2026-61864, CVE-2026-61865, CVE-2026-61866, CVE-2026-61870, CVE-2026-62946へのセキュリティ対応。
imagemagick-6-common imagemagick-6.q16
libmagickcore-6.q16-7-extra libmagickcore-6.q16-7t64
libmagickwand-6.q16-7t64

セキュリティ対応なのでお早めに。

#prattohome #更新

  • 2
  • 1
  • 0
  • 10h ago

Overview

  • ImageMagick
  • ImageMagick

10 Jul 2026
Published
10 Jul 2026
Updated

CVSS v4.0
MEDIUM (6.3)
EPSS
0.23%

KEV

Description

ImageMagick before 7.1.2-15 contains a use-after-free vulnerability in the PDB decoder that uses a stale pointer when memory allocation fails. Attackers can trigger this vulnerability by processing malicious PDB files to cause crashes or write a single zero byte to freed memory.

Statistics

  • 1 Post
  • 3 Interactions

Last activity: 10 hours ago

Fediverse

Profile picture fallback

#Ubuntu 24.04.5 で #update

imagemagick (8:6.9.12.98+dfsg1-5.2ubuntu0.1~esm13)
CVE-2026-56366, CVE-2026-56368, CVE-2026-56370, CVE-2026-56371, CVE-2026-56373, CVE-2026-56378, CVE-2026-56379, CVE-2026-61465, CVE-2026-61857, CVE-2026-61863, CVE-2026-61864, CVE-2026-61865, CVE-2026-61866, CVE-2026-61870, CVE-2026-62946へのセキュリティ対応。
imagemagick-6-common imagemagick-6.q16
libmagickcore-6.q16-7-extra libmagickcore-6.q16-7t64
libmagickwand-6.q16-7t64

セキュリティ対応なのでお早めに。

#prattohome #更新

  • 2
  • 1
  • 0
  • 10h ago
Showing 71 to 80 of 87 CVEs