24h | 7d | 30d

Overview

  • Linux
  • Linux

16 Jun 2026
Published
29 Jun 2026
Updated

CVSS v3.1
HIGH (7.8)
EPSS
0.23%

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

  • 5 Posts
  • 5 Interactions

Last activity: 3 hours ago

Fediverse

Profile picture fallback

"Sicherheitsforscher sind auf eine neue, pedit COW genannte, Schwachstelle CVE-2026-46331 gestoßen, es erlaubt, Speicherinhalte zu missbrauchen, um normalen Nutzern Root-Rechte zu verschaffen."

borncity.com/blog/2026/06/28/p

  • 1
  • 1
  • 0
  • 10h ago
Profile picture fallback

‼️ CVE-2026-46331: A Linux kernel vulnerability affecting the act_pedit packet-editing component in the net/sched subsystem.

CVSS: 7.8

Published: June 26th, 2026
PoC: github.com/0xBlackash/CVE-2026

  • 0
  • 2
  • 0
  • 22h ago
Profile picture fallback

The Linux pedit COW vulnerability (CVE-2026-46331) hands local users silent root via page cache poisoning, leaving no trace on disk. Patch now.

meterpreter.org/linux-pedit-co

  • 0
  • 1
  • 0
  • 13h ago
Profile picture fallback

There's another #Linux page cache corruption bug making the rounds, assigned CVE-2026-46331. And again, I couldn't find a list of #kernel versions that include the fix. I wonder why? Anyway, here's the list:

7.1.x stable: 7.1
7.0.x stable: 7.0.13
6.18.x lts: 6.18.36
6.12.x lts: 6.12.94

  • 0
  • 0
  • 0
  • 3h ago

Bluesky

Profile picture fallback
Linux Kernel: 'pedit COW' Local Privilege Escalat... https://blog.qualys.com/product-tech/vulnmgmt-detection-response/2026/05/09/dirty-frag-using-the-page-caches-as-an-attack-surface https://flagthis.com/newsletter/2026/06/28/tldr/4104 ##Linux ##PrivilegeEscalation ##CVE2026_46331 ##KernelSecurity
  • 0
  • 0
  • 0
  • 18h ago

Overview

  • libssh2
  • libssh2

17 Jun 2026
Published
25 Jun 2026
Updated

CVSS v4.0
CRITICAL (9.2)
EPSS
0.92%

KEV

Description

libssh2 through 1.11.1, fixed in commit 7acf3df contains an out-of-bounds write vulnerability in ssh2_transport_read() that fails to enforce upper bounds on packet_length field. Remote attackers can send crafted SSH packets with excessively large packet_length values to corrupt heap memory and achieve remote code execution.

Statistics

  • 5 Posts
  • 1 Interaction

Last activity: 4 hours ago

Fediverse

Profile picture fallback

Critical libssh2 vulnerability with a proof-of-concept exploit already published. curl, PHP and libgit2 are also affected.
nvd.nist.gov/vuln/detail/CVE-2
#ssh #Vulnerability #ITSecurity #curl

  • 1
  • 0
  • 0
  • 4h ago

Bluesky

Profile picture fallback
CVE-2026-55200 in libssh2 allows untrusted SSH servers to trigger heap memory corruption and potential code execution on connecting clients without credentials or user interaction.
  • 0
  • 0
  • 0
  • 8h ago
Profile picture fallback
Public PoC Released for Critical libssh2 CVE-2026-55200 Client-Side SSH Flaw thehackernews.com/2026/06/publ...
  • 0
  • 0
  • 0
  • 7h ago
Profile picture fallback
CVE-2026-55200: Öffentlicher Exploit-Code für libssh2-Schwachstelle veröffentlicht www.all-about-security.de/cve-2026-552... #cve #cybersecurity
  • 0
  • 0
  • 0
  • 6h ago

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

  • 3 Posts
  • 11 Interactions

Last activity: 5 hours ago

Fediverse

Profile picture fallback

ANOTHER #Linux LPE: CVE-2026-43503

If only Linus wasn't so obsessed with calling #OpenBSD developers "masturbating monkeys" 18 years ago and actually took security seriously. 🤔

cnet.com/tech/tech-industry/to

  • 4
  • 5
  • 0
  • 8h ago

Bluesky

Profile picture fallback
DirtyClone (CVE-2026-43503) : un user local devient root sur Linux sans rien écrire sur le disque ni dans les logs. Debian, Ubuntu, Fedora touchés. Et patcher DirtyFrag ne suffit pas : il faut patch toute la chaîne. 👇 www.it-connect.fr/dirtyclone-l... #linux #cybersecurite
  • 0
  • 2
  • 0
  • 9h ago
Profile picture fallback
DirtyClone (CVE-2026-43503) is a Linux kernel local privilege escalation flaw fixed by May 24, requiring specific DirtyFrag-family patches to prevent root access.
  • 0
  • 0
  • 0
  • 5h ago

Overview

  • Red Hat
  • Red Hat Enterprise Linux 10
  • yelp-xsl

29 Jun 2026
Published
29 Jun 2026
Updated

CVSS
Pending
EPSS
Pending

KEV

Description

A flaw was found in Yelp due to an overly permissive Content Security Policy (CSP) implementation provided by yelp-xsl. A malicious Flatpak application can open crafted help content through the OpenURI portal. By embedding an untrusted CSS stylesheet within a structured SVG document, attacker-controlled content can bypass Flatpak's intended sandbox isolation, allowing Yelp to evaluate local XML inclusions and disclose arbitrary user-readable host files through remote CSS resource requests. This may result in the unauthorized disclosure of sensitive information.

Statistics

  • 3 Posts
  • 1 Interaction

Last activity: 4 hours ago

Fediverse

Profile picture fallback

CVE-2026-13601 (HIGH, CVSS 7.1) in Red Hat Enterprise Linux 10: Yelp’s help viewer can leak sensitive files via crafted Flatpak apps due to weak Content Security Policy. No patch yet — restrict untrusted Flatpaks. radar.offseq.com/threat/cve-20

  • 1
  • 0
  • 0
  • 4h ago

Bluesky

Profile picture fallback
揭秘Yelp安全漏洞:CVE-2026-13601的深层分析与应对策略 https://qian.cx/posts/FF3143F9-7FA5-4BEB-8E38-FF4B051C11FF
  • 0
  • 0
  • 0
  • 4h ago
Profile picture fallback
Уязвимость CVE-2026-13601 в Yelp: как избыточно разрешительная CSP угрожает безопасности пользователей https://kripta.biz/posts/084FE9E4-04E1-433A-A57F-35093243C157
  • 0
  • 0
  • 0
  • 4h ago

Overview

  • SourceCodester
  • Class and Exam Timetabling System

28 Jun 2026
Published
29 Jun 2026
Updated

CVSS v4.0
MEDIUM (6.9)
EPSS
0.41%

KEV

Description

A vulnerability was found in SourceCodester Class and Exam Timetabling System 1.0. This affects an unknown function of the file /preview.php. Performing a manipulation of the argument course_year_section results in sql injection. The attack can be initiated remotely. The exploit has been made public and could be used.

Statistics

  • 3 Posts

Last activity: 1 hour ago

Fediverse

Profile picture fallback

CVE-2026-13485 - SQLi in SourceCodester Class & Exam Timetabling System 1.0. Unpatched, exploit public. CVSS 7.3. Update or mitigate immediately. #CVE #infosec #cybersecurity

valtersit.com/cve/CVE-2026-134

  • 0
  • 0
  • 0
  • 7h ago

Bluesky

Profile picture fallback
深度解析CVE-2026-13485漏洞:SourceCodester课程与考试排程系统1.0的安全风险与应对策略 https://qian.cx/posts/6233490D-77C4-4E14-A3CF-5B0EDB2B959A
  • 0
  • 0
  • 0
  • 1h ago
Profile picture fallback
Уязвимость CVE-2026-13485 в системе SourceCodester Class and Exam Timetabling: угрозы и способы защиты https://kripta.biz/posts/05D3F006-E982-4B59-8436-2232C94FD522
  • 0
  • 0
  • 0
  • 1h ago

Overview

  • fast-uri
  • fast-uri

29 Jun 2026
Published
29 Jun 2026
Updated

CVSS v3.1
HIGH (7.5)
EPSS
Pending

KEV

Description

fast-uri versions 2.3.1 through 3.1.2 and 4.0.0 fail to canonicalize Unicode (IDN) hostnames for HTTP-family URLs. The IDN conversion path calls a helper that does not exist on the global URL constructor, silently leaving the host in its original Unicode form while normalize() and equal() still return values that differ from a WHATWG-compatible URL parser. Applications that use fast-uri to enforce host-based policy (denylists, loopback filtering, redirect validation, outbound proxy routing) before passing the same URL to Node's URL or fetch can be bypassed when the two implementations resolve the same input to different hosts. Patches: upgrade to fast-uri 3.1.3 for the 3.x line or 4.0.1 for the 4.x line. Workarounds: enforce host policy using the same URL parser used for the actual request, or reject non-ASCII hosts before policy checks.

Statistics

  • 4 Posts

Last activity: Last hour

Fediverse

Profile picture fallback

🚨 High-severity security fix in fast-uri 3.1.3 and 4.0.1 just released!

Patches CVE-2026-13676. fast-uri vulnerable to host confusion via failed IDN canonicalization.

github.com/fastify/fast-uri/se

  • 0
  • 0
  • 1
  • 3h ago

Bluesky

Profile picture fallback
深度解析CVE-2026-13676漏洞:fast-uri库的Unicode处理缺陷及安全影响 https://qian.cx/posts/C4CE2CED-E5D8-4E52-8B08-1B0870C5A73D
  • 0
  • 0
  • 0
  • Last hour
Profile picture fallback
Уязвимость CVE-2026-13676 в библиотеке fast-uri: угроза безопасности и способы защиты https://kripta.biz/posts/8EF0E361-300A-4DEC-8690-B6EDFEC2908D
  • 0
  • 0
  • 0
  • Last hour

Overview

  • Unknown
  • APCu Manager

29 Jun 2026
Published
29 Jun 2026
Updated

CVSS
Pending
EPSS
0.16%

KEV

Description

The APCu Manager WordPress plugin before 4.5.0 does not escape APCu object-cache keys before rendering them in an admin-area page, leading to a Stored Cross-Site Scripting vulnerability. When a persistent object cache is enabled, cache keys derived from unsanitised user input (e.g. a transient name created by another APCu Manager WordPress plugin before 4.5.0 from an unauthenticated request) are output without escaping and execute arbitrary JavaScript in the session of an administrator viewing the page.

Statistics

  • 3 Posts

Last activity: 5 hours ago

Fediverse

Profile picture fallback

Stored XSS (CVE-2026-10083, HIGH) found in APCu Manager <4.5.0 for WordPress. Persistent object caching lets attackers inject JS via crafted cache keys, compromising admin sessions. Disable object caching or update plugin. radar.offseq.com/threat/cve-20

  • 0
  • 0
  • 0
  • 9h ago

Bluesky

Profile picture fallback
WordPress插件APCu Manager漏洞分析:CVE-2026-10083的安全风险与防护措施 https://qian.cx/posts/F904C32A-D0E4-4F87-8CAD-3DE8493A4E9D
  • 0
  • 0
  • 0
  • 5h ago
Profile picture fallback
Уязвимость CVE-2026-10083 в плагине APCu Manager для WordPress: угроза безопасности и способы защиты https://kripta.biz/posts/5AD8050D-B385-4D4B-A62D-432210DA059E
  • 0
  • 0
  • 0
  • 5h ago

Overview

  • itsourcecode
  • Online Hotel Management System

29 Jun 2026
Published
29 Jun 2026
Updated

CVSS v4.0
MEDIUM (6.9)
EPSS
Pending

KEV

Description

A flaw has been found in itsourcecode Online Hotel Management System 1.0. Affected is an unknown function of the file /admin/mod_amenities/controller.php?action=add. Executing a manipulation of the argument image can lead to unrestricted upload. It is possible to launch the attack remotely. The exploit has been published and may be used.

Statistics

  • 3 Posts

Last activity: 2 hours ago

Fediverse

Profile picture fallback

CVE-2026-13553 - Unrestricted file upload in itsourcecode Online Hotel Management System 1.0 via controller.php. CVSS 7.3. Exploit published. No patch available. Restrict access or disable uploads immediately. #CVE #infosec #cybersecurity

valtersit.com/cve/CVE-2026-135

  • 0
  • 0
  • 0
  • 2h ago

Bluesky

Profile picture fallback
深度解析CVE-2026-13553漏洞:itsourcecode在线酒店管理系统1.0的安全风险与应对策略 https://qian.cx/posts/D1B13429-C9D6-48EB-9261-45F133F28F20
  • 0
  • 0
  • 0
  • 4h ago
Profile picture fallback
Уязвимость CVE-2026-13553 в системе управления отелями itsourcecode: угрозы и способы защиты https://kripta.biz/posts/21FD0FDE-949E-4ED3-BE55-11FDBE6EDE7E
  • 0
  • 0
  • 0
  • 4h ago

Overview

  • Tenda
  • JD12L

29 Jun 2026
Published
29 Jun 2026
Updated

CVSS v4.0
HIGH (8.7)
EPSS
0.47%

KEV

Description

A vulnerability was found in Tenda JD12L 16.03.53.23. This impacts the function fromNatStaticSetting of the file /goform/NatStaticSetting. The manipulation of the argument page results in stack-based buffer overflow. The attack can be executed remotely. The exploit has been made public and could be used.

Statistics

  • 3 Posts

Last activity: 3 hours ago

Fediverse

Profile picture fallback

Stack-based buffer overflow in Tenda JD12L (16.03.53.23) — CVE-2026-13519 (HIGH, CVSS 8.7). Remote code execution possible via fromNatStaticSetting. Public exploit out, no patch yet. Limit device exposure. radar.offseq.com/threat/cve-20

  • 0
  • 0
  • 0
  • 13h ago

Bluesky

Profile picture fallback
深度解析Tenda JD12L路由器CVE-2026-13519漏洞:影响范围与安全防护指南 https://qian.cx/posts/64530B16-5DC0-40A8-9F9C-951EC40D37F6
  • 0
  • 0
  • 0
  • 3h ago
Profile picture fallback
Уязвимость CVE-2026-13519 в маршрутизаторе Tenda JD12L: угроза безопасности и способы защиты https://kripta.biz/posts/0786E9F4-D319-4B31-A522-A0ED7A4671F8
  • 0
  • 0
  • 0
  • 3h ago

Overview

  • OPPO
  • O+ Connect

29 Jun 2026
Published
29 Jun 2026
Updated

CVSS v3.1
HIGH (7.3)
EPSS
0.09%

KEV

Description

Because O+ Connect's IPC service does not authenticate clients, external applications can escalate privileges and perform sensitive actions through the IPC channel.

Statistics

  • 5 Posts

Last activity: 3 hours ago

Fediverse

Profile picture fallback

OPPO O+ Connect v16.0.33 is vulnerable (CVE-2026-22078, HIGH). Lack of IPC client authentication lets external apps escalate privileges — potential for sensitive actions. Patch unavailable. Monitor and restrict app permissions. radar.offseq.com/threat/cve-20

  • 0
  • 0
  • 0
  • 7h ago

Bluesky

Profile picture fallback
深度解析CVE-2026-22078漏洞:O+ Connect IPC服务认证缺陷及安全风险 https://qian.cx/posts/C6359DC9-7163-493D-BAB8-DF7CD7D8B024
  • 0
  • 0
  • 1
  • 5h ago
Profile picture fallback
Уязвимость CVE-2026-22078 в O+ Connect: угроза безопасности и способы защиты https://kripta.biz/posts/B2FFB718-0247-4FB5-B1DB-CB63CC647660
  • 0
  • 0
  • 0
  • 5h ago
Profile picture fallback
Уязвимость CVE-2026-22078 в O+ Connect: угроза безопасности из-за отсутствия аутентификации клиентов https://kripta.biz/posts/39346B82-8BC1-4F75-AF5A-D1B9E03E7D9E
  • 0
  • 0
  • 0
  • 3h ago
Showing 1 to 10 of 189 CVEs