24h | 7d | 30d

Overview

  • Linux
  • Linux

23 May 2026
Published
14 Jun 2026
Updated

CVSS v3.1
HIGH (8.8)
EPSS
0.13%

KEV

Description

In the Linux kernel, the following vulnerability has been resolved: net: skbuff: propagate shared-frag marker through frag-transfer helpers Two frag-transfer helpers (__pskb_copy_fclone() and skb_shift()) fail to propagate the SKBFL_SHARED_FRAG bit in skb_shinfo()->flags when moving frags from source to destination. __pskb_copy_fclone() defers the rest of the shinfo metadata to skb_copy_header() after copying frag descriptors, but that helper only carries over gso_{size,segs, type} and never touches skb_shinfo()->flags; skb_shift() moves frag descriptors directly and leaves flags untouched. As a result, the destination skb keeps a reference to the same externally-owned or page-cache-backed pages while reporting skb_has_shared_frag() as false. The mismatch is harmful in any in-place writer that uses skb_has_shared_frag() to decide whether shared pages must be detoured through skb_cow_data(). ESP input is one such writer (esp4.c, esp6.c), and a single nft 'dup to <local>' rule -- or any other nf_dup_ipv4() / xt_TEE caller -- is enough to land a pskb_copy()'d skb in esp_input() with the marker stripped, letting an unprivileged user write into the page cache of a root-owned read-only file via authencesn-ESN stray writes. Set SKBFL_SHARED_FRAG on the destination whenever frag descriptors were actually moved from the source. skb_copy() and skb_copy_expand() share skb_copy_header() too but linearize all paged data into freshly allocated head storage and emerge with nr_frags == 0, so skb_has_shared_frag() returns false on its own; they need no change. The same omission exists in skb_gro_receive() and skb_gro_receive_list(). The former moves the incoming skb's frag descriptors into the accumulator's last sub-skb via two paths (a direct frag-move loop and the head_frag + memcpy path); the latter chains the incoming skb whole onto p's frag_list. Downstream skb_segment() reads only skb_shinfo(p)->flags, and skb_segment_list() reuses each sub-skb's shinfo as the nskb -- both p and lp must carry the marker. The same omission also exists in tcp_clone_payload(), which builds an MTU probe skb by moving frag descriptors from skbs on sk_write_queue into a freshly allocated nskb. The helper falls into the same family and warrants the same fix for consistency; no TCP TX-side in-place writer is currently known to reach a user page through this gap, but a future consumer depending on the marker would regress silently. The same omission exists in skb_segment(): the per-iteration flag merge takes only head_skb's flag, and the inner switch that rebinds frag_skb to list_skb on head_skb-frags exhaustion does not fold the new frag_skb's flag into nskb. Fold frag_skb's flag at both sites so segments drawing frags from frag_list members carry the marker.

Statistics

  • 5 Posts

Last activity: 9 hours ago

Fediverse

Profile picture fallback

My latest technical deep-dive is live! 🚨

Deep dive into CVE-2026-43503 (DirtyClone) in the Linux kernel network stack. Learn how a metadata propagation gap drops the SHARED_FRAG flag, bypasses COW guards, and grants instant LPE root access:

denizhalil.com/2026/06/26/cve-

#CVE202643503 #DirtyClone #LinuxKernel #LPE #Cybersecurity

  • 0
  • 0
  • 0
  • 21h ago
Profile picture fallback

The DirtyClone vulnerability (CVE-2026-43503) is a high-severity Linux kernel flaw that allows unprivileged users to gain root access by manipulating cloned network packets within the XFRM/IPsec subsystem. Attackers exploit the improper handling of the SKBFL_SHARED_FRAG flag to modify cached system files without leaving detectable logs or audit trails.
cybersecuritynews.com/dirtyclo

  • 0
  • 0
  • 0
  • 21h ago
Profile picture fallback

Two new Linux LPEs hit page cache from opposite ends of the kernel

Two new Linux kernel LPEs, CVE-2026-46331 (pedit COW) and CVE-2026-43503 (DirtyClone), corrupt page-cache memory to gain root without touching disk. Working exploits are public

thecybersecguru.com/news/linux

  • 0
  • 0
  • 0
  • 23h ago

Bluesky

Profile picture fallback
Nova vulnerabilidade DirtyClone no Linux permite controlo total do sistema. A falha crítica, conhecida como CVE-2026-43503, permite a um utilizador local com poucos privilégios corromper a memória suportada por ficheiros através de um pacote de rede clonado, obtendo acesso de administrador. 🚨 #con
  • 0
  • 0
  • 0
  • 9h ago
Profile picture fallback
Tracked as CVE-2026-43503 (CVSS 8.8), it lets a local user corrupt file-backed memory through a cloned network packet and gain root. The patch landed in mainline on May 21; if your kernel does not have it, update now. thehackernews.com/2026/06/new-...
  • 0
  • 0
  • 0
  • 9h ago

Overview

  • Linux
  • Linux

16 Jun 2026
Published
19 Jun 2026
Updated

CVSS
Pending
EPSS
0.29%

KEV

Description

In the Linux kernel, the following vulnerability has been resolved: net/sched: fix pedit partial COW leading to page cache corruption tcf_pedit_act() computes the COW range for skb_ensure_writable() once before the key loop using tcfp_off_max_hint, but the hint does not account for the runtime header offset added by typed keys. This can leave part of the write region un-COW'd. Fix by moving skb_ensure_writable() inside the per-key loop where the actual write offset is known, and add overflow checking on the offset arithmetic. For negative offsets (e.g. Ethernet header edits at ingress), use skb_cow() to COW the headroom instead. Guard offset_valid() against INT_MIN, where negation is undefined.

Statistics

  • 4 Posts
  • 1 Interaction

Last activity: 9 hours ago

Fediverse

Profile picture fallback

Two new Linux LPEs hit page cache from opposite ends of the kernel

Two new Linux kernel LPEs, CVE-2026-46331 (pedit COW) and CVE-2026-43503 (DirtyClone), corrupt page-cache memory to gain root without touching disk. Working exploits are public

thecybersecguru.com/news/linux

  • 0
  • 0
  • 0
  • 23h ago

Bluesky

Profile picture fallback
CVE-2026-46331 lets local users gain root on affected Linux systems by corrupting page-cache memory through act_pedit.
  • 0
  • 1
  • 0
  • 9h ago
Profile picture fallback
Linux Kernel Pedit COW Privilege Escalation Vulnerability CVE-2026-46331 Threat Intelligence Update #patchmanagement
  • 0
  • 0
  • 0
  • 10h ago
Profile picture fallback
Uma nova vulnerabilidade no kernel do Linux, a pedit COW (CVE-2026-46331), permite a um utilizador local sem privilégios obter acesso root em máquinas afetadas. O exploit público está disponível desde junho de 2026. 🚨 #falha #linux #sistema
  • 0
  • 0
  • 0
  • 9h ago

Overview

  • Cisco
  • Cisco Unified Communications Manager

03 Jun 2026
Published
26 Jun 2026
Updated

CVSS v3.1
HIGH (8.6)
EPSS
41.69%

Description

A vulnerability in Cisco Unified Communications Manager (Unified CM) and Cisco Unified Communications Manager Session Management Edition (Unified CM SME) could allow an unauthenticated, remote attacker to conduct server-side request forgery (SSRF) attacks through an affected device. This vulnerability is due to improper input validation for specific HTTP requests. An attacker could exploit this vulnerability by sending a crafted HTTP request to an affected device. A successful exploit could allow the attacker to write files to the underlying operating system that could be used later to elevate to root. Note: Cisco has assigned this security advisory a Security Impact Rating (SIR) of Critical rather than High as the score indicates. The reason is that exploitation of this vulnerability could result in an attacker elevating privileges to root. Note: To exploit this vulnerability, the WebDialer service must be enabled. WebDialer is disabled by default.

Statistics

  • 3 Posts

Last activity: 2 hours ago

Fediverse

Profile picture fallback

CISA confirms active zero-day exploitation of Cisco Unified CM (CVE-2026-20230), introducing a critical SSRF vector that allows threat actors to bypass internal security boundaries. Access our complete executive risk mitigation framework and boardroom governance strategy: thecybermind.co/ptus

  • 0
  • 0
  • 0
  • 11h ago
Profile picture fallback

CVE-2026-20230 (Cisco UCM) and CVE-2026-12569 (PTC Windchill/FlexPLM) are actively exploited. The Cisco flaw is unauthenticated SSRF enabling arbitrary file writes; PTC involves unsafe deserialization leading to RCE....

captechgroup.com/threat-intell

  • 0
  • 0
  • 0
  • 2h ago

Bluesky

Profile picture fallback
Cisco Unified Communications Manager Arbitrary File Write to RCE (CVE-2026-20230) #patchmanagement
  • 0
  • 0
  • 0
  • 6h ago

Overview

  • Amazon Web Services
  • Language Servers for AWS

23 Jun 2026
Published
23 Jun 2026
Updated

CVSS v4.0
HIGH (8.5)
EPSS
0.12%

KEV

Description

Improper trust boundary enforcement in Language Servers for AWS before version 1.65.0 on all supported platforms may allow a for arbitrary code execution. If a local user opens a maliciously crafted workspace, any commands within the project configuration files may be automatically executed. This issue requires the user to trust the workspace when prompted. To remediate this issue, users should upgrade to Language Servers for AWS version 1.65.0 or higher.

Statistics

  • 3 Posts

Last activity: Last hour

Fediverse

Profile picture fallback

🚨 AWS Language Server Flaw!

CVE-2026-12957 allows zero-click command injection and cloud credential theft simply by opening a poisoned repository inside your IDE (affecting Amazon Q Developer).

denizhalil.com/2026/06/27/cve-

#CVE202612957 #aws #Cybersecurity #infosec #CloudSecurity

  • 0
  • 0
  • 0
  • Last hour

Bluesky

Profile picture fallback
Amazon Q Developer Flaw CVE-2026-12957: When Opening a Repository Hands Over Your AWS Keys + Video Introduction: The integration of AI coding assistants into development workflows has introduced a new and insidious attack vector: the trusted workspace. A recently patched high-severity…
  • 0
  • 0
  • 0
  • 21h ago
Profile picture fallback
Wiz found a high-severity flaw in Amazon Q Developer for VS Code that could expose cloud credentials when a malicious repo is opened. AWS patched CVE-2026-12957 and CVE-2026-12958. #AmazonQ #AWS #Wiz
  • 0
  • 0
  • 0
  • 21h ago

Overview

  • Samsung Mobile
  • Samsung Mobile Devices

09 Jan 2026
Published
26 Feb 2026
Updated

CVSS v4.0
HIGH (7.3)
EPSS
0.13%

KEV

Description

Use After Free in PROCA driver prior to SMR Jan-2026 Release 1 allows local attackers to potentially execute arbitrary code.

Statistics

  • 2 Posts
  • 4 Interactions

Last activity: 3 hours ago

Fediverse

Profile picture fallback

🔒 Sicherheitslücke im Android-Kernel: Forscher von Lucid Bit Labs melden einen Use-after-free-Bug (CVE-2026-20971, CVSS 7,8) in Samsung-Proca/Knox. Betroffen: Galaxy S9–S25 u. a. Angriff möglich via bösartige App & Race-Condition. Patch: Januar 2026. golem.de/news/sicherheitslueck #CyberSecurity #Samsung #Android #Vulnerability #Patch

  • 4
  • 0
  • 0
  • 8h ago

Bluesky

Profile picture fallback
Samsung Knox: Hypervisor-Level Kernel Protection Bypass CVE-2026-20971 ##Samsung ##VulnerabilityAnalysis ##Hypervisor ##MobileSecurity https://flagthis.com/newsletter/2026/06/27/tldr/3692
  • 0
  • 0
  • 0
  • 3h ago

Overview

  • pravel
  • Invoice Generator

27 Jun 2026
Published
27 Jun 2026
Updated

CVSS v3.1
CRITICAL (9.8)
EPSS
0.66%

KEV

Description

The Invoice Generator plugin for WordPress is vulnerable to privilege escalation due to a missing capability check on the pravel_invoice_edit_account() AJAX action in versions up to, and including, 1.0.0. The handler is exposed via wp_ajax_nopriv_pravel_invoice_edit_account, accepts an attacker-controlled user_id and user_email from POST data, and calls wp_update_user() without verifying authentication, ownership, or a nonce. This makes it possible for unauthenticated attackers to change the email address of any user, including administrators, and then trigger WordPress's password reset flow to gain access to the targeted account.

Statistics

  • 1 Post
  • 6 Interactions

Last activity: 10 hours ago

Fediverse

Profile picture fallback

CVE-2026-12415: pravel Invoice Generator ≤1.0.0 suffers CRITICAL privilege escalation — unauthenticated users can reset any account, incl. admins, via exposed AJAX handler. Disable plugin or restrict access ASAP. radar.offseq.com/threat/cve-20

  • 5
  • 1
  • 0
  • 10h ago

Overview

  • Daktronics
  • VFC-DMP-5000

26 Jun 2026
Published
26 Jun 2026
Updated

CVSS v3.1
CRITICAL (9.8)
EPSS
0.84%

KEV

Description

Various versions of Daktronics Controller Firmware could allow authenticated and unauthenticated remote users to escape the intended directory and enumerate arbitrary file system paths.

Statistics

  • 1 Post
  • 5 Interactions

Last activity: 16 hours ago

Fediverse

Profile picture fallback

Daktronics VFC-DMP-5000 firmware has a CRITICAL vuln (CVE-2026-28701, CVSS 9.8): remote attackers can traverse directories & enumerate file paths — no auth needed. No patch yet. Restrict network access & monitor closely. radar.offseq.com/threat/cve-20

  • 5
  • 0
  • 0
  • 16h ago

Overview

  • PTC
  • Windchill PDMLink

18 Jun 2026
Published
26 Jun 2026
Updated

CVSS v4.0
CRITICAL (9.3)
EPSS
1.11%

Description

A critical remote code execution (RCE) vulnerability has been reported in PTC Windchill PDMlink and PTC FlexPLM. The vulnerability may be exploited through the deserialization of untrusted data.  * This advisory also applies to all CPS versions * The identified vulnerability also impacts Windchill and FlexPLM releases prior to 11.0 M030

Statistics

  • 2 Posts

Last activity: 2 hours ago

Fediverse

Profile picture fallback

CVE-2026-20230 (Cisco UCM) and CVE-2026-12569 (PTC Windchill/FlexPLM) are actively exploited. The Cisco flaw is unauthenticated SSRF enabling arbitrary file writes; PTC involves unsafe deserialization leading to RCE....

captechgroup.com/threat-intell

  • 0
  • 0
  • 0
  • 2h ago

Bluesky

Profile picture fallback
PTC Windchill Under Siege: 93 CVSS RCE Flaw (CVE-2026-12569) Actively Exploited for JSP Web Shell Deployment – CISA KEV Adds Urgency + Video Introduction: A critical remote code execution vulnerability in PTC Windchill PDMLink and FlexPLM enterprise Product Lifecycle Management (PLM) solutions is…
  • 0
  • 0
  • 0
  • 13h ago

Overview

  • H.VIEW
  • HV-500S6 IP Camera

26 Jun 2026
Published
26 Jun 2026
Updated

CVSS v3.1
HIGH (7.2)
EPSS
0.40%

KEV

Description

A vulnerability exists in H.View IP cameras certificate-related upload interfaces allow authenticated users to store arbitrary file content to fixed, persistent filesystem locations without validating file type, structure, or size. This design omission enables the placement of unexpected or malformed data in locations intended for trusted certificate material, which could affect system integrity or behavior even after reboot.

Statistics

  • 1 Post
  • 4 Interactions

Last activity: 15 hours ago

Fediverse

Profile picture fallback

CVE-2026-56414: H.VIEW HV-500S6 IP Camera has a HIGH-severity vuln (CVSS 7.2) allowing authenticated users to upload arbitrary files via certificate upload, risking persistent compromise. Restrict admin access & monitor uploads. radar.offseq.com/threat/cve-20

  • 4
  • 0
  • 0
  • 15h ago

Overview

  • Daktronics
  • VFC-DMP-5000

26 Jun 2026
Published
26 Jun 2026
Updated

CVSS v3.1
HIGH (7.1)
EPSS
0.34%

KEV

Description

The DMP-5000 file service exposes authenticated arbitrary file upload functionality. There are exposed endpoints which allows authenticated users to upload files of any type without validation. No file extension filtering or content inspection is enforced which allows executable binaries and scripts to be accepted and written directly to the server.

Statistics

  • 1 Post
  • 4 Interactions

Last activity: 6 hours ago

Fediverse

Profile picture fallback

Daktronics VFC-DMP-5000 is affected by CVE-2026-33560 (HIGH, CVSS 7.1) — authenticated users can upload any file type, risking code execution. No patch yet; restrict permissions, monitor uploads. Details: radar.offseq.com/threat/cve-20

  • 4
  • 0
  • 0
  • 6h ago
Showing 1 to 10 of 64 CVEs