HispasecJuly 23, 2026🇪🇸Translated from Spanish

CVE-2026-8933: snap-confine Flaw Allows Local Root Escalation on Default Ubuntu Desktop Installs

A security defect in snap-confine, an internal component of snapd, opens the door to local privilege escalation up to root on systems running Ubuntu Desktop. The vulnerability, registered as CVE-2026-8933 and rated high severity, directly impacts default installations of Ubuntu Desktop 24.04, 25.10, and 26.04, a common scenario on corporate laptops, developer workstations, and administrative endpoints.

The weakness does not permit remote access on its own. It requires prior local presence or the ability for an attacker to already execute code with user-level permissions. Once that limited foothold exists, the flaw can convert it into full system control. In CVSS metrics the issue carries a score of 7.8 with the vector AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, indicating high risk to confidentiality, integrity, and availability after the attacker is inside the system.

The root cause is linked to a hardening modification that replaced the traditional setuid root model with one based on Linux capabilities. While the redesign was intended to reduce attack surface, it introduced a delicate window during sandbox initialization. Exploitation relies on race conditions during the creation of temporary directories and files in /tmp, combined with FUSE mounts and symbolic links to redirect writes toward sensitive paths.

One described technique bypasses AppArmor confinement by planting a malicious udev rule in /run/udev/rules.d/ and forcing systemd-udevd to execute commands as root. This type of chaining illustrates the real risk on endpoints, where a single untrusted binary executed by a user can lead to complete host compromise.

The upstream fix is included in snapd 2.76.1. Corrected Ubuntu packages comprise 2.76+ubuntu22.04.1, 2.76+ubuntu24.04.1, and 2.76+ubuntu26.04.3, plus ESM versions for Ubuntu 16.04, 18.04, and 20.04. The practical recommendation is to update snapd immediately and verify the version on each machine rather than assuming prior updates or system age provide protection.

In enterprise environments, deployment should prioritize workstations, development teams, and any endpoint likely to run user-privileged software. Beyond patching, tightening the internal perimeter by reducing execution of untrusted binaries, strengthening local access controls, and maintaining solid hardening with active and updated AppArmor helps limit the maneuverability exploited by such local flaws.

Related articles

SecuritylabVulnerabilities & Exploits

PHP Type Juggling Vulnerabilities: How Loose Comparisons Enable Authentication Bypass in Legacy Applications

PHP Type Juggling remains a persistent source of critical authentication bypass vulnerabilities because the language's dynamic typing and loose comparison operator == automatically coerce strings, arrays, and scientific notation values into numbers. The article explains why == differs fundamentally from the strict === operator, how magic hashes starting with 0e followed by digits can be treated as zero, and why functions like hash_hmac return NULL when given arrays instead of strings in older PHP versions. It details practical exploitation techniques including sending parameter[]=value to force arrays, bypassing HMAC checks, and the changes introduced in PHP 8 that eliminated many unexpected string-to-number conversions. The piece also covers detection methods for penetration testers, such as searching for == usage around cryptographic functions, and provides concrete defensive recommendations including mandatory use of hash_equals and strict in_array comparisons. Finally, it directs readers to a hands-on ONE TASK exercise on the free White Hacker Profession course platform to practice identifying and exploiting these issues in a realistic application.

Security NEXTVulnerabilities & Exploits

Dell Releases Security Update for PowerProtect Data Manager Fixing 359 Vulnerabilities

Dell has issued a security update for its data protection solution Dell PowerProtect Data Manager to address a total of 359 vulnerabilities. The company published security advisory DSA-2026-287 on July 14, 2026, rating the issues as Critical and urging users to apply the fixes immediately. Six product-specific flaws were resolved, including CVE-2026-40712 in the REST API that allows privilege escalation after input validation bypass and CVE-2026-49499 stemming from improper security token generation. The remaining four native vulnerabilities received CVSS v3.1 base scores between 6.0 and 7.2. In addition, 353 third-party component vulnerabilities were patched, covering 130 issues in the Linux kernel along with flaws in Apache Log4j, Apache Tomcat, Samba, PostgreSQL, OpenSSL, glibc, and Vim. Administrators are advised to upgrade to version 20.2.0.0 or later to mitigate the risks.

BoletimSecVulnerabilities & Exploits

ASUS Releases Security Updates to Fix Critical CVE-2026-13385 Router Vulnerability with CVSS Score 9.5

ASUS has issued security updates to address a critical vulnerability identified as CVE-2026-13385 that affects multiple router firmware versions and could allow remote command execution. The flaw impacts devices running firmware versions 3.0.0.4_386, 3.0.0.4_388, and 3.0.0.6_102 across various home and small business router lines. It stems from inadequate validation of digital certificates and file integrity mechanisms, preventing proper authentication of servers or received content. Exploitation requires a man-in-the-middle attack condition on compromised networks or manipulated connections but does not need administrative credentials or user interaction. Users are advised to install the latest firmware for their specific models, disable unnecessary administrative features, and review any unauthorized configuration changes. The advisory emphasizes the high severity of the issue given its 9.5 CVSS score and broad device coverage.

BoletimSecVulnerabilities & Exploits

Vulnerability in Adobe Acrobat Chrome Extension Allowed Theft of WhatsApp Web Conversations

A flaw in the Adobe Acrobat extension for Chrome enabled malicious websites to steal active WhatsApp Web conversations, contacts, and profile information without requiring any user interaction beyond visiting a prepared URL. The vulnerability, tracked as CVE-2026-48294 and named HermeticReader, carried a CVSS score of 7.4 and affected approximately 329 million installations across all versions up to 26.5.2.2. Attackers exploited internal extension pages and missing origin validation to modify local storage, activate the Hermes integration mechanism, and extract rendered chat content by predicting tab identifiers and sending commands to the Acrobat component. The stolen data included contact names, conversation lists, message previews, profile details, and the full text of open chats, all transmitted to attacker servers via hidden forms while leaving end-to-end encryption intact. Adobe addressed the issue in version 26.5.2.3, which was automatically pushed through the Chrome Web Store. No evidence of in-the-wild exploitation had surfaced prior to public disclosure.