惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Tailwind CSS Blog
有赞技术团队
有赞技术团队
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
J
Java Code Geeks
雷峰网
雷峰网
WordPress大学
WordPress大学
L
LangChain Blog
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
Microsoft Security Blog
Microsoft Security Blog
P
Proofpoint News Feed
腾讯CDC
GbyAI
GbyAI
罗磊的独立博客
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
F
Fortinet All Blogs
Y
Y Combinator Blog
V
V2EX
A
About on SuperTechFans

Cyber Security News

AIRecon: AI-Powered Penetration Testing Tool with Kali Linux Sandbox Critical Chrome Vulnerabilities Allow Attackers to Execute Arbitrary Code - Update Now! UNC3753 Uses Screen-Sharing Sessions and RMM Tools to Exfiltrate Sensitive Legal Data New OnionDrop Loader Campaign Uses gainmsg C2 to Deliver LegionLoader Payloads ClickFix Campaign Uses EtherHiding and GULoader to Infect Windows Users via Fake CAPTCHA Ghostwriter Hackers Abuse Gmail Admin-Themed Emails to Steal Credentials and 2FA Codes The Half-Life of Threat Intelligence: When Does an IOC Stop Being Useful? Critical Fortinet FortiSandbox Vulnerabilities Actively Exploited in Attacks Aembit Extends IAM for Agentic AI to Microsoft Copilot Studio India Temporarily Bans Telegram Messenger Over Medical Exam Fraud Microsoft 365 Device Code Phishing Campaign Bypasses Password Theft With Legitimate Login Flow AppViewX Launches Agent Identity Security to Govern Agents for the AI and Quantum Era Hackers Weaponize Microsoft Teams Relay to Hide Ransomware Traffic Developer laptops are the credential store attackers are picking through in 2026, GitGuardian announces Endpoint Protection Interlock and Rhysida Ransomware Operations Share Supper Backdoor and Malware Codebase Novo Nordisk Confirms Cyber Attack — Hackers Accessed Patient Medical Data and Internal AI Assets Russian and Chinese Influence Actors Use AI to Evade Bot Detection and Mimic Human Behavior Microsoft Teams Analyze the Wi-Fi Hotspot Data Connected to an Employee’s Device PRC-Nexus Hackers Exploit REDCap Servers to Spy on US Medical Research Institutions Infinite Campus Data Breach Exposes 137,000 Users Personal Details OptinMonster Plugin Hack Exposes 1.2 Million Wordpress Sites to Cyberattack Ransomware Ecosystem Consolidates Around LockBit Alumni, Qilin, Hyflock, and The Gentlemen Hackers Abuse Legitimate RMM Tools in The Quarry IRS and SSA Phishing Campaigns LiteSpeed cPanel Plugin 0-Day Vulnerability Actively Exploited in the Wild Cisco SD-WAN vManage Vulnerability Exploited in Zero-Day Attacks Nearly 14,000 SimpleHelp Servers Exposed Amid Critical Authentication Bypass Disclosure Microsoft Site Showing Warning Following Certificate Expiry DPAPISnoop Tool Extracts CREDHIST Hashes for Offline Windows Credential Recovery SHADOWBYT3$ Allegedly Claim Breach of Nintendo, Stealing Sensitive Data Anthropic Updated Privacy Policy to Include Identity Verification for Claude Users
Critical FFmpeg Vulnerability Allows Attackers to Weaponi...
Abinaya · 2026-06-23 · via Cyber Security News

A critical vulnerability has been disclosed in FFmpeg’s MagicYUV decoder that allows attackers to weaponize seemingly harmless media files and, in some scenarios, achieve remote code execution (RCE).

The flaw, tracked as CVE-2026-8461 and dubbed “PixelSmash,” is a heap out-of-bounds write in FFmpeg’s libavcodec component, with a CVSS score of 8.8 (High).

According to the JFrog Security Research, a single crafted AVI, MKV, or MOV file is enough to crash applications or, with a refined exploit chain, execute arbitrary commands on the underlying system.

FFmpeg is one of the most widely deployed media processing frameworks and is bundled into countless applications, including desktop video players, Linux thumbnail generators, self-hosted media servers, cloud transcoding pipelines, and even AI/ML data processing stacks.

Because the MagicYUV decoder is enabled by default in upstream FFmpeg builds and most major Linux distributions, the bug propagates silently into any project that links libavcodec.

Exploit Flow (Source : jfrog )
Exploit Flow (Source : jfrog )

FFmpeg Vulnerability

JFrog confirmed crashes against applications such as Kodi, mpv, ffmpegthumbnailer, Jellyfin, Emby, Nextcloud, Immich, PhotoPrism, and OBS Studio, and demonstrated full RCE against a Jellyfin media server and a Nextcloud instance using a malicious 50 KB AVI file.

The root cause lies in how the MagicYUV decoder handles video slices and chroma plane heights. MagicYUV uses horizontally divided slices per frame, and for subsampled formats like YUV420P, the decoder must translate luma slice heights into chroma slice heights.

Due to a rounding mismatch between the frame allocator and the decoder, an attacker-controlled slice_height value can cause FFmpeg to write one full row of chroma data beyond the end of a heap-allocated buffer.

In the proof-of-concept, a crafted media stream sets slice_height to an odd value, leading to an accumulation of off-by-one rows that push writes directly into adjacent heap structures.

Critically, the overflowing writes land on an AVBuffer structure that FFmpeg uses for reference-counted frame buffers.

By crafting a malicious payload, an attacker can overwrite FFmpeg memory structures, causing a call to system() with an attacker-controlled command and enabling remote code execution.

In JFrog’s Jellyfin exploit, this was weaponized into a reverse shell that executed as the Jellyfin service account once the media library scan triggered ffprobe on the malicious file.

Real-World Attack (Source : jfrog )
Real-World Attack (Source : jfrog )

The attack surface is broad and often “near-zero-click.” On desktops, simply browsing to a folder can trigger thumbnail generation via ffmpegthumbnailer and activate the bug.

On servers, media platforms like Jellyfin, Emby, and Nextcloud automatically invoke ffmpeg or ffprobe to generate previews and metadata when new files appear or are viewed.

JFrog also warns that similar vectors exist in cloud media pipelines and AI/ML environments that use FFmpeg (directly or via PyAV/OpenCV) to decode user-supplied video.

Turning PixelSmash into a potential denial-of-service or exploitation primitive inside shared inference or data-processing workers.

To exploit PixelSmash, an attacker only needs to deliver the crafted media file to any application that decodes video using FFmpeg with MagicYUV enabled.

No authentication or elevated privileges are required beyond the ability to upload, share, or place a file for automatic processing.

This makes common setups, such as torrent clients writing directly to media library directories, especially dangerous, as Jellyfin-style auto-scans can process malicious content immediately after download, without any user interaction.

Supply Chain Impact (Source : jfrog )
Supply Chain Impact (Source: jfrog )

The vulnerability has been fixed in a patched FFmpeg release (e.g., 8.1.2 or later with the MagicYUV bounds checks applied), and users are strongly urged to upgrade their FFmpeg builds as soon as possible.

As temporary mitigation, administrators can rebuild FFmpeg with the MagicYUV decoder disabled or apply the minimal patch that rejects invalid slice_height values before decoding.

Because this is a supply chain issue in a foundational library, projects that embed FFmpeg are advised to audit their builds, reduce enabled codecs where possible, and adopt allow-listing strategies similar to Plex’s minimal decoder configuration to limit the blast radius in the future.

Follow us on Google NewsLinkedIn, and X to Get More Instant Updates.

Abinaya

Abinayahttps://cybersecuritynews.com/

Abi is a Security Editor and fellow reporter with Cyber Security News. She is covering various cyber security incidents happening in the Cyber Space.