安全客August 27, 2026🇨🇳Translated from Chinese

Redis Patch Bypass Enables Multiple RCE Exploits as PoCs for TLS and Stream Vulnerabilities Go Public

Redis has suffered a rapid series of remote code execution vulnerabilities over the past month, with the latest TLS pending list flaw (QVD-2026-58458) now accompanied by public technical details and a working proof-of-concept. Security researchers have already reproduced the issue, and the vendor released an emergency fix. Because Redis is ubiquitous in backend architectures for caching, sessions, message queues, and leaderboards, any vulnerability in the service immediately affects a wide range of organizations.

The most concerning disclosure is the July patch-bypass vulnerability targeting CVE-2026-25243. The original fix addressed a reference-counting problem with shared NACK objects in stream consumer groups, yet the remediation was incomplete. Attackers can chain the commands XGROUP, EVAL, and RESTORE to trigger a Double Free memory corruption primitive, ultimately achieving arbitrary code execution on the server. Patch-bypass issues are particularly dangerous because they target teams that believe they have already mitigated the risk after applying the initial update.

The affected versions for the bypass are Redis 6.2.22 and earlier, 7.4.9 and earlier, and 8.6.4 and earlier; the official remediation begins at version 8.8.0. The August 26 disclosure of QVD-2026-58458 similarly provides a public PoC, lowering the barrier for exploitation to the level of script kiddies copying existing code. Although all three vulnerabilities require authentication, real-world deployments frequently use weak passwords, empty passwords, or publicly reachable instances, rendering the authentication requirement ineffective against automated scanners.

Once an attacker gains control, the consequences extend far beyond data leakage. Redis instances often sit at the center of internal networks; code execution allows attackers to harvest credentials, map internal assets, and pivot to databases and application servers. The following practical steps are recommended for defenders:

  • Perform a complete asset inventory covering production, test, and shadow instances, then upgrade every affected version to the latest patched release.
  • Enforce strict network controls so that Redis is never exposed to the public internet and is reachable only from explicitly allowed internal IPs; immediately remediate weak or missing passwords via requirepass or ACLs.
  • Enable logging and audit for high-risk command sequences, especially non-standard usage of XGROUP, EVAL, and RESTORE; restrict Lua script execution via ACLs when not required.
  • Update container base images in addition to host-level patches to avoid version drift between the running container and the patched host.
  • Incorporate official Redis security announcements and threat-intelligence feeds into routine monitoring processes.

This wave of vulnerabilities underscores that the security posture of foundational infrastructure components directly determines the resilience of the entire environment. With public PoCs, patch bypasses, and near-universal version coverage, the race is now between rapid remediation and automated scanning campaigns.

Related articles

HabrVulnerabilities & Exploits

Vulnerability Management in Atypical Environments: ICS, Networks, IoT, Mobile, Hardware, and ML Systems

Vulnerability management follows the same core process across environments—identify assets, scan, assess risk, prioritize, remediate, and verify—but each domain introduces critical constraints. In industrial control systems, scanning must avoid disrupting physical processes, requiring audit-mode authenticated scans, digital twins for testing, and strict change windows. Network devices frequently suffer from poor segmentation, default SNMP community strings, and exposed management interfaces that enable traffic redirection or configuration tampering. IoT ecosystems remain plagued by default credentials, as demonstrated by the Mirai botnet that took down major DNS infrastructure in 2016, while modern botnets like Reaper and VPNFilter exploit unpatched firmware at massive scale. Machine learning systems face novel threats including prompt injection, prompt leaking, and jailbreaking that can bypass safety controls or exfiltrate training data. Mobile platforms suffer from extreme fragmentation that prevents timely patching of vulnerabilities such as Stagefright, Pegasus, and BlueBorne. Hardware-level flaws like Spectre, Meltdown, and BadUSB demonstrate that even firmware and silicon require coordinated microcode, OS, and application updates.

Security NEXTVulnerabilities & Exploits

Google Issues Chrome 153 Security Update Addressing 42 Vulnerabilities Including Three Critical Flaws

Google has released a major security update for its Chrome browser version 153, fixing a total of 42 vulnerabilities. The update includes three critical-severity issues that could allow attackers to execute arbitrary code or cause memory corruption. Patches are now available for Windows, macOS, and Linux platforms, with versions 153.0.8010.48 and 153.0.8010.47. Among the critical fixes are out-of-bounds read in WebGL, use-after-free in Internals, and another use-after-free in Workers. The release also resolves 28 high-severity flaws affecting the V8 JavaScript engine, ServiceWorker, Skia, DOM, PDF, and other components. Medium and low severity issues were addressed as well, bringing the total to 42 vulnerabilities resolved.

Security NEXTVulnerabilities & Exploits

Oracle Releases September 2026 Critical Security Patch Update Fixing 673 Issues Across Multiple Products

Oracle has published its monthly Critical Security Patch Update (CSPU) on September 15, 2026, delivering a total of 673 security fixes. The update addresses 672 unique CVEs after removing duplicates and targets a wide range of products including Oracle Database Server, Oracle Fusion Middleware, Oracle E-Business Suite, PeopleSoft, Siebel, and Oracle VM VirtualBox. Of the fixes, 607 received a CVSSv3 base score of 7.0 or higher, with 104 scoring 9.0 or above. Six vulnerabilities carry the maximum score of 10.0, while 15 are rated 9.9 and 44 are rated 9.8. Additionally, 247 of the issues can be exploited remotely without authentication. The CSPU serves as a smaller, more frequent complement to Oracle’s quarterly Critical Patch Update (CPU) releases.

安全客Vulnerabilities & Exploits

Cisco Secure Email Gateway CVE-2026-76461 Critical SQL Injection Flaw Exploited in the Wild for Root Access

Cisco has confirmed active exploitation of CVE-2026-76461, a CVSS 9.8 critical SQL injection vulnerability in Secure Email Gateway. The flaw resides in AsyncOS mail parsing logic and allows unauthenticated attackers to execute arbitrary commands as root simply by sending a specially crafted email. No user interaction, authentication, or workarounds exist, leaving immediate patching as the only mitigation. Affected versions include all releases up to 15.5, 16.0, and 16.5; fixed builds are 15.5.5-014, 16.0.4-302, and 16.5.0-780. Because the gateway sits at the network perimeter with high privileges, successful compromise enables long-term email interception, lateral movement, and internal phishing campaigns. Organizations should examine mail_logs for patterns such as COPY.*TO PROGRAM and cross-check network telemetry for anomalous outbound connections.