LIVE · cybersecurity feed
Live wire
Malware Hijacks Android Car Head UnitsCritical Flaw in NASA/JPL Open-Source Spacecraft Command Software Allowed Unauthenticated Command ExecutionCVE-2026-73570 · U.S. CISA adds Zimbra Collaboration Suite (ZCS) flaw to its Known Exploited Vulnerabilities catalogCVE-2024-3094 · Connecting the Dots: Securing the Overlooked Corners of the Software Development Lifecycle (SDLC) Supply Chain14 Trojanized npm Packages Drop RedC2 4.0 Linux Backdoor With AI-Assisted C2Hundreds of leaked AWS keys give full control over corporate accountsAndroid Car Malware Spreads Through Built-In Updaters for Ad Fraud, Proxy BotnetMalware injected into popular Rust packages to steal developer credentialsSix Maximum-Severity Flaws Found in Cisco ProductsCritical Isolated-vm Vulnerability Leads to RCE on Host
security

Named Pipes Under Attack: Securing Windows Interprocess Communication

Windows named pipes provide fast interprocess communication, but weak access controls can expose privileged services to untrusted processes. ThreatLocker explains how endpoint verification, command authorization, strict input validation, and narrowly scoped privileges can help secure named-pipe communication. [...]

zeroday.news ·

Named pipes, a common mechanism for interprocess communication (IPC) on Windows systems, are frequently treated as inherently secure due to their local nature. However, cybersecurity experts are cautioning that this assumption is unsafe and can lead to significant vulnerabilities, particularly when a privileged service communicates with a less privileged application.

Developers often assume that because named pipes facilitate communication between applications on the same computer, the interactions are trusted. This overlooks the complex environment of a Windows workstation, which can host processes running under various users, security contexts, and sessions, including potentially compromised accounts or malicious software. Any process with knowledge of a pipe's name and sufficient access rights can attempt to connect, regardless of whether it is the intended client.

The primary risk arises when a Windows service operating with elevated privileges, such as `LocalSystem`, exposes functionality through a named pipe to a desktop application running under a standard user account. Such a service might have the ability to modify protected files and registry keys, launch processes, alter system configurations, or access other users' data. When these operations are accessible via a named pipe, the pipe effectively becomes an API to privileged functionality.

A successful connection to a named pipe only confirms that the client had permission to open the pipe, not that it is the legitimate application or that the connected user is authorized for specific operations. Experts advise that pipe permissions should be explicitly defined and restricted to the narrowest possible set of identities, avoiding broad permissions like `Everyone` or `Authenticated Users`. Authentication, which verifies who connected, must be separated from authorization, which determines what that identity is permitted to do. Sensitive commands should be individually authorized.

Servers must also validate the security identity behind a connection, rather than relying on the process name, executable path, or the perceived secrecy of the pipe name. The server should authorize each operation separately; for instance, a client allowed to query service status should not automatically be permitted to stop the service or modify protected configurations. Without strict validation, a privileged service can become a "confused deputy," executing actions chosen by a less privileged client, such as reading an arbitrary system file instead of an intended status file.

The client side also bears responsibility for verifying the server. An attacker could create a named pipe using an expected name before the legitimate server starts, causing the client to connect to an attacker-controlled process. While the "first-pipe-instance" option can help detect if a name is already claimed, it does not replace proper access controls or server identity verification.

Furthermore, messages received through a named pipe must be treated as untrusted input. Even an authenticated client might send malformed or oversized payloads, invalid paths, unsupported command combinations, or corrupted data designed to trigger error conditions. A privileged service that directly translates such input into file, registry, or process operations risks becoming a confused deputy. Robust validation, including strict message framing, bounded sizes, command allowlists, schema validation, path normalization, and safe error handling, is crucial.

Named pipe security also extends to availability and remote exposure. A malicious or malfunctioning process could repeatedly connect, hold connections open, send incomplete messages, or submit requests that consume excessive CPU, memory, or kernel resources. Servers should implement connection limits, timeouts, cancellation, bounded message sizes, controlled concurrency, and rate limiting. It is also important to note that Windows named pipes can support remote access in some configurations. Pipes intended exclusively for local IPC should explicitly block network identities like `NT AUTHORITY\NETWORK` or use mechanisms that guarantee local-only communication.

The overarching principle for named pipe security is to consider every connection potentially hostile until the client or server identity, permissions, requested operation, and message contents have all been thoroughly verified. This approach is particularly critical when a named pipe acts as a security boundary between processes with differing privilege levels or trust levels.

ShareXLinkedInWhatsAppFacebook

More News

view all →
malware

Hackers infect Android car head units with proxy botnet malware

A supply-chain attack targeting Android-based car head units is using a legitimate device-update app to spread malware that enlists compromised devices in a proxy botnet or uses them for ad fraud. [...]

security

Your Expired Visa Card Could Be ‘Zombified’ to Make Contactless Payments

Plus: Apple sends out an “unprecedented” number of spyware warnings, Ukraine hits a Russian ecommerce giant with cyber and drone attacks, and more.

malwarehigh

Malware Hijacks Android Car Head Units

Researchers have identified new Android malware that hijacks car head units by exploiting their official update mechanisms. The malware installs proxy software, turning vehicles into nodes for the BADBOX botnet, primarily for ad fraud and to provide anonymized internet connections. This marks the first documented instance of malware specifically targeting car head units through their native update channels.

malware

Banking Trojans Manic, Grandoreiro, ToxicPanda 2.0 in the Spotlight

The spyware-equipped Manic, a persistent Grandoreiro campaign in Latin America and Europe, and an expanded ToxicPanda 2.0 malware. The post Banking Trojans Manic, Grandoreiro, ToxicPanda 2.0 in the Spotlight appeared first on SecurityWeek.

nasacritical

Critical Flaw in NASA/JPL Open-Source Spacecraft Command Software Allowed Unauthenticated Command Execution

A critical vulnerability has been discovered in NASA/JPL's open-source AIT-GUI software, which is used to control spacecraft instruments. The flaw allows unauthenticated attackers to execute arbitrary commands, run server-side scripts, and manipulate command sequences by exploiting a lack of authentication, session checks, and CSRF protection. Researchers confirmed the issue, which has a CVSS score of 9.4, and a fix is available in version 2.5.2.

CVE-2026-73570critical

U.S. CISA adds Zimbra Collaboration Suite (ZCS) flaw to its Known Exploited Vulnerabilities catalog

CISA has added a critical vulnerability in Zimbra Collaboration Suite (ZCS) to its Known Exploited Vulnerabilities catalog. The flaw, CVE-2026-73570, allows unauthenticated remote code execution and is being actively exploited by threat actors. Zimbra released a patch for the vulnerability less than a month before exploitation was confirmed.