Security advisory
CybersecurityHighActiveUpdated Aug 31, 2026

TerminalFix ClickFix Variant Deploys Reverse-Tunnel Backdoor via Fake Cloudflare CAPTCHAs

A multi-stage attack chain combining DLL sideloading, steganographic payloads, and Active Directory recon culminates in a custom reverse-tunnel backdoor that turns one infected machine into a proxy into the entire network.

Emanuel De AlmeidaAug 31, 2026, 11:11 PM6 min read
Severity
High
Status
Active
Entity
Microsoft
Confirmed by
Microsoft security researchers

Microsoft has disclosed details of TerminalFix, a ClickFix variant that tricks users into running malicious commands in Windows Terminal or PowerShell rather than the classic Windows Run dialog, according to an analysis published by Microsoft security researchers. The campaign uses compromised websites to serve fake Cloudflare CAPTCHA verification pages that prompt visitors to copy and execute a PowerShell command.

Unlike traditional ClickFix lures that rely on the Run dialog, TerminalFix's use of a full terminal increases the odds that complex, multi-line scripts execute successfully, culminating in a custom reverse-tunnel backdoor that gives attackers persistent proxy access into a victim's internal network.

Key takeaways

  • Microsoft disclosed TerminalFix, a ClickFix variant, in a security analysis.
  • Fake Cloudflare CAPTCHA pages on compromised websites trick visitors into running PowerShell in Windows Terminal.
  • The chain uses DLL sideloading via a legitimate binary and a rogue DLL to fetch payloads hidden in PNG images.
  • A Python-based implant tunnels TCP traffic to attacker infrastructure over an encrypted WebSocket, giving network-level proxy access.
  • Microsoft recommends restricting PowerShell/Run dialog execution, auditing DLL sideloading, and enabling script block logging.

Affected

Vendors
Microsoft
Products
Windows TerminalPowerShellWindows
Malware
TerminalFixClickFix

What is TerminalFix and how does it start?

TerminalFix is a ClickFix variant that Microsoft disclosed in an analysis attributed to researchers Sagar Patil, Suriyaraj Natarajan, and Parasharan Raghavan. Traditional ClickFix lures push victims to the Windows Run dialog, but TerminalFix instead directs them to Windows Terminal or PowerShell, which Microsoft says increases the odds that longer, multi-line scripts execute without errors.

The campaign targets organizations across multiple sectors and starts on compromised websites. Visitors are shown a fake Cloudflare CAPTCHA verification screen instructing them to copy a command and paste it into a terminal window, a classic social-engineering pretext that mimics a routine "prove you're human" check.

How does the DLL sideloading and payload extraction work?

Once executed, the PowerShell command downloads a ZIP archive containing a legitimate binary, "LockScreenContentServer.exe," alongside a malicious DLL named "dui70.dll," a pairing designed to trigger DLL sideloading when the legitimate executable is launched. Per Microsoft, the sideloaded DLL then fetches next-stage payloads that are hidden using steganography inside PNG images retrieved from external domains including "bestsocialmedianewspapper[.]com" and "offlineupdater[.]com".

This layering of a signed executable, a rogue DLL, and image-embedded payloads is intended to evade static detection tools that inspect files individually rather than the full execution chain. Persistence is set through both Registry Run keys and scheduled tasks, giving the malware two independent ways to survive a reboot.

What does the reverse-tunnel backdoor actually do?

The final payload is a Python-based command-and-control implant Microsoft names "client.py," which tunnels arbitrary TCP traffic to attacker infrastructure at "gitnow[.]dev:443" over an encrypted WebSocket channel. Microsoft describes this as a bespoke reverse-tunnel implant that grants attackers persistent, network-level proxy access through the infected machine, meaning the C2 server can reach any host visible from the victim's internal network, not just the compromised endpoint itself.

Why this matters beyond one machine

Microsoft warned this type of intrusion is "particularly dangerous because it provides attackers with direct access to an organization's internal network through the reverse tunnel," enabling further privilege escalation, security control tampering, data exfiltration, and ransomware deployment.

Who is at risk from the TerminalFix campaign?

Microsoft says the campaign targets organizations across multiple sectors, with no single industry singled out in the disclosed analysis. Any employee who visits a compromised website and follows the fake CAPTCHA prompt to run PowerShell in Windows Terminal is a potential entry point, regardless of the organization's size.

Because the attack relies on tricking a human into pasting and running a command rather than exploiting a software flaw, standard patching does not address the root risk. Endpoint controls that govern who can run PowerShell or the Run dialog become the primary line of defense.

What reconnaissance does the malware perform inside the network?

  • Collects system metadata from the infected host.
  • Performs domain trust discovery, domain admin enumeration, and Active Directory user and computer searches.
  • Pings named servers to map the internal network topology.
  • Deploys a persistent PowerShell file-watch loop that monitors a text file for new commands, executes them via Invoke-Expression, and writes results to an output file.

This reconnaissance phase, combined with the reverse tunnel, effectively hands the attacker a remote console into Active Directory before any lateral movement occurs, according to Microsoft's analysis.

How can defenders detect and mitigate TerminalFix?

  • Restrict PowerShell and Run dialog execution for standard users through AppLocker, Application Control for Windows, or Group Policy.
  • Consider blocking or auditing the Windows Run dialog (Win+R) if it is not required for normal business use.
  • Monitor for DLL sideloading indicators, such as unexpected DLLs loaded alongside signed binaries like LockScreenContentServer.exe.
  • Enable PowerShell script block logging to detect and analyze obfuscated or encoded commands.
  • Train employees to recognize ClickFix-style prompts that ask them to copy and paste commands into a terminal.

Microsoft's guidance frames these controls as complementary: technical restrictions reduce the chance a pasted command ever runs, while logging and monitoring catch the sideloading and reconnaissance activity if a user does execute it.

Timeline

Aug 30, 2026
Microsoft publishes TerminalFix analysisMicrosoft security researchers Sagar Patil, Suriyaraj Natarajan, and Parasharan Raghavan publish an analysis detailing the TerminalFix ClickFix variant and its reverse-tunnel backdoor.

Impact & actions

TerminalFix's reverse-tunnel implant gives attackers persistent, network-level proxy access from a single compromised endpoint, opening the door to lateral movement and ransomware deployment.

Security: Once installed, the backdoor lets attackers reach any host visible from the victim's network, enabling privilege escalation, security control tampering, and further reconnaissance beyond the initial foothold.

Recommended actions · High urgency

  1. 1Restrict PowerShell and Run dialog execution for standard users via AppLocker, Application Control for Windows, or Group Policy
  2. 2Block or audit the Windows Run dialog (Win+R) if not required for a given user population
  3. 3Monitor for DLL sideloading indicators, including unexpected dui70.dll alongside LockScreenContentServer.exe
  4. 4Enable PowerShell script block logging to detect obfuscated or encoded commands
  5. 5Train employees to recognize ClickFix-style fake CAPTCHA prompts before they copy or run commands

Technical details

Exploitation
Exploited in the wild
Attack vector
Social engineering via fake Cloudflare CAPTCHA pages on compromised websites that direct victims to paste and run a malicious PowerShell command in Windows Terminal or PowerShell.

Indicators of compromise

Domain
bestsocialmedianewspapper[.]com — External domain hosting staged payloads hidden in PNG images
Domain
offlineupdater[.]com — External domain hosting staged payloads hidden in PNG images
Domain
gitnow[.]dev — C2 infrastructure receiving the reverse-tunnel WebSocket connection on port 443
File
dui70.dll — Rogue DLL sideloaded alongside the legitimate LockScreenContentServer.exe binary
File
client.py — Python-based reverse-tunnel backdoor that proxies TCP traffic to attacker infrastructure
File
LockScreenContentServer.exe — Legitimate binary abused for DLL sideloading

Mitigations

  • Restrict PowerShell and Run dialog execution for standard users through AppLocker, Application Control for Windows, or Group Policy
  • Block or audit the Windows Run dialog (Win+R) where not needed
  • Train employees to recognize and refuse ClickFix-style fake CAPTCHA execution prompts

Response

Vendor

Microsoft said this type of intrusion is particularly dangerous because it gives attackers direct access to an organization's internal network through the reverse tunnel, and that the observed reconnaissance and reverse-tunnel capability could let an attacker identify and reach additional systems from a compromised host.

Customer guidance

Microsoft advises restricting PowerShell and Run dialog execution for standard users, auditing for DLL sideloading, enabling PowerShell script block logging, and training employees to spot ClickFix-style fake CAPTCHA prompts.

Updates

Aug 30, 2026Microsoft publishes TerminalFix analysis

Microsoft security researchers published the initial technical writeup detailing the fake CAPTCHA lure, DLL sideloading chain, and reverse-tunnel implant.

FAQ

What is TerminalFix?

TerminalFix is a ClickFix variant, disclosed by Microsoft, that tricks victims into pasting and running a malicious PowerShell command in Windows Terminal or PowerShell via fake Cloudflare CAPTCHA pages on compromised websites.

How does TerminalFix differ from traditional ClickFix attacks?

Traditional ClickFix lures direct victims to the Windows Run dialog, while TerminalFix directs them to Windows Terminal or PowerShell, which Microsoft says increases the odds that complex, multi-line scripts execute successfully.

What does the TerminalFix reverse-tunnel backdoor do?

The Python-based implant, client.py, tunnels arbitrary TCP traffic to attacker infrastructure at gitnow[.]dev over an encrypted WebSocket, giving attackers network-level proxy access to any host visible from the victim's network.

Is there a patch for TerminalFix?

No, TerminalFix is a social-engineering and malware campaign rather than a software vulnerability, so there is no patch. Microsoft recommends configuration-based mitigations such as restricting PowerShell and Run dialog execution.

How can organizations detect a TerminalFix infection?

Microsoft recommends monitoring for DLL sideloading involving LockScreenContentServer.exe and dui70.dll, enabling PowerShell script block logging, and watching for outbound connections to gitnow[.]dev.

What reconnaissance does TerminalFix perform once installed?

The malware collects system metadata, performs domain trust discovery and domain admin enumeration, runs Active Directory user and computer searches, and pings named servers to map the internal network.

The bottom line

Microsoft disclosed TerminalFix, a ClickFix variant that uses fake Cloudflare CAPTCHA pages to push victims into running PowerShell that ultimately installs a Python reverse-tunnel backdoor.

What happens next

What to do

Restrict PowerShell and Run dialog execution for standard users, enable script block logging, and train staff to refuse fake CAPTCHA copy-paste prompts.

Reader reviews

Rate this articleBe the first to rate
No written reviews yetRate the article above, or be the first to share your experience.

Related articles