Docs Placeholder Domain Hijacked to Serve ClickFix Attacks

SOC Briefing Summary :: Executive Key Takeaways
- [01]The widely referenced documentation placeholder domain third-party.com has been weaponized to distribute ClickFix clipboard-poisoning attacks.
- [02]The site serves a fake Cloudflare human verification CAPTCHA that silently copies an obfuscated PowerShell payload downloading malware into the clipboard.
- [03]Replace all unreserved placeholder domains with RFC 2606 reserved domains (example.com), block third-party.com, and hunt for elxxvvx[.]xyz.
Executive Summary
A critical supply chain and social engineering risk has emerged following the weaponization of `third-party.com`, a domain historically treated by software engineers and technical authors as an arbitrary placeholder hostname. Identified by Manifold Security and corroborated by BleepingComputer, the domain has been observed serving a deceptive ClickFix social engineering lure designed to compromise Windows endpoints through clipboard hijacking and manual PowerShell execution.
For over two decades, technical specifications and official documentation—including the World Wide Web Consortium (W3C) Geolocation and Compute Pressure specifications, Chromium's Telemetry Extension API guides, and popular repositories from Vercel and Sanity—have utilized third-party.com to illustrate external API calls, cross-origin iframes, and service worker fetch requests. Unlike IANA-governed domains such as example.com, third-party.com enjoys no statutory protection and operates as a privately registrable domain.
Adversaries controlling the domain have configured targeted visitor filtering: Linux and macOS clients receive benign error pages, while Windows visitors are presented with a spoofed Cloudflare security verification screen. Interacting with the CAPTCHA silently injects an obfuscated PowerShell loader into the victim's clipboard, coaxing the user into executing it via the Windows Run dialog (Win+R).
Technical Vulnerability Analysis & Attack Chain

The intrusion relies on an ingenious fusion of documentation-derived supply chain exposure and client-side social engineering:
- Documentation Ingestion & Public Repository Exposure: Developers writing code, unit tests, or artificial intelligence skills routinely copy code samples from technical standards into their projects. Public code searches revealed
third-party.comhardcoded in more than 1,500 source files across 1,700+ repositories, including modern AI skills and Model Context Protocol (MCP) server documentation. When developers, automated QA runners, or LLM web browsing agents access these sample links, traffic routes directly to the adversary-controlled server. - User-Agent Fingerprinting & Cloaking: The web server inspects the connecting client's
User-Agentheader upon connection. If the client is identified as macOS or Linux, the site aborts the attack, rendering:"macOS is not supported. This website requires a Windows PC to access."This selective delivery completely shields the malicious infrastructure from Linux-based threat intelligence crawlers, web scanners, and automated datacenter sandboxes. - Deceptive Cloudflare CAPTCHA Lure: When a Windows User-Agent is detected, the server serves a convincing replica of a Cloudflare Turnstile / DDoS protection interstitial titled
"Performing security verification"with a checkbox reading"Verify you are human". - Clipboard Injection via Browser APIs: When the victim clicks the verification checkbox, client-side JavaScript calls the Clipboard API (
navigator.clipboard.writeTextordocument.execCommand('copy')). An obfuscated PowerShell command line is silently written into the local operating system clipboard. - ClickFix Run Dialog Coercion: A modal pop-up displays instructional steps commanding the user to press
Windows Key + R(openingexplorer.exe's Run dialog), followed byCtrl + V(pasting the clipboard payload) andEnter. Because the command executes directly within the operating system shell rather than as an executable download within the browser, it bypasses standard browser download warnings, SmartScreen URL reputation, and web perimeter AV gateways. - Staged PowerShell Malware Delivery: Upon execution, the PowerShell one-liner dynamically reconstructs the secondary distribution endpoint
elxxvvx[.]xyz/f, downloads an obfuscated stage-2 script in memory, retrieves a 134MB ZIP archive (update2.zipsaved asupdate26.zip), extracts its contents, and attempts to execute a packaged binary nameddraw.io.exe.
MITRE ATT&CK Tactics, Techniques & Procedures (TTPs)
| Tactic | Technique ID | Technique Name | Operational Context |
|---|---|---|---|
| Reconnaissance | T1592.002 | Gather Victim Host Information: Client Configurations | Inspecting User-Agent to filter out Linux and macOS visitors |
| Initial Access | T1189 | Drive-by Compromise | Luring developers to third-party.com via unvetted documentation examples |
| Execution | T1204.002 | User Execution: Malicious File / Command | ClickFix social engineering prompting victim to run Win+R and Ctrl+V |
| Execution | T1059.001 | Command and Scripting Interpreter: PowerShell | Headless PowerShell execution downloading and unpacking stage-2 archives |
| Defense Evasion | T1115 | Clipboard Data: Clipboard Manipulation | Silent injection of command-line payloads into Windows clipboard via JS |
| Defense Evasion | T1027 | Obfuscated/Compressed Code | Reconstructing download URLs from segmented strings to evade static scanners |
| Command and Control | T1105 | Ingress Tool Transfer | Downloading update2.zip archive from external staging domain elxxvvx.xyz |
Threat Actor Profile & Campaign Attribution
The ClickFix campaign is operated by opportunistic cybercrime groups specializing in initial access brokerage and malware distribution. ClickFix tactics have proliferated across 2025 and 2026, increasingly favored by infostealer syndicates (such as Lumma, Vidar, and Stealc operators) because it offloads code execution onto the victim, evading browser perimeter sandboxes.
While third-party.com was originally registered in 1996 as a legitimate domain, the current operators either acquired the expired registration or took control of the authoritative DNS records to exploit its widespread footprint in developer documentation. The campaign deliberately targets technical workers, software engineers, and automated AI browsing agents whose elevated network access provides high-value beachheads into corporate development environments.
Detection & SOC Mitigation Playbook
1. Patch & Workaround Guidance
- Enforce RFC 2606 / RFC 6761 Reserved Domains: Audit all internal repositories, developer documentation, API specifications, and automated test suites. Replace all instances of
third-party.comwith globally reserved documentation domains:example.com,example.org,example.net, or dedicated.example/.testtop-level domains. - Sanitize AI Skill & MCP Server Configurations: Inspect MCP server manifests and agentic skill definitions to ensure tool integrations and prompt examples do not point to unverified external domains.
- User Awareness Training: Educate developers and technical personnel on the mechanics of ClickFix attacks: legitimate CAPTCHAs and security checks will never require opening the Windows Run dialog (
Win+R) or pasting clipboard text into a terminal.
2. Network & Perimeter Defenses
- DNS Sinkhole / Perimeter Block: Immediately configure enterprise DNS resolvers, secure web gateways (SWGs), and firewall egress filters to block all inbound and outbound traffic to
third-party.comand known distribution hostelxxvvx[.]xyz. - Inspect Developer Workstation Egress: Alert on workstation connections to newly observed
.xyzdomains, particularly when initiated by command-line interpreters (powershell.exe,cmd.exe). - Restrict Clipboard API Access: In corporate browser policies (Google Chrome / Microsoft Edge), restrict untrusted web applications from writing to the system clipboard without explicit user confirmation prompts.
3. Endpoint Detection & Hunting Query
title: ClickFix PowerShell Execution Spawned from Windows Run Dialog
id: 7c4e1a29-8f3b-4d10-9012-567890abcdef
status: experimental
description: Detects powershell.exe spawned directly by explorer.exe containing obfuscated flags, hidden windows, or download primitives indicative of ClickFix attacks.
author: CyberNewsAI Threat Intelligence
references:
- https://www.bleepingcomputer.com/news/security/placeholder-domain-used-in-dev-docs-now-serves-clickfix-attacks/
tags:
- attack.t1204.002
- attack.t1059.001
- attack.t1115
logsource:
category: process_creation
product: windows
detection:
selection_parent:
ParentImage|endswith: '\explorer.exe'
selection_powershell:
Image|endswith:
- '\powershell.exe'
- '\pwsh.exe'
selection_args:
CommandLine|contains:
- '-w hidden'
- '-windowstyle hidden'
- 'elxxvvx'
- 'update2.zip'
- 'update26.zip'
- 'draw.io.exe'
- 'DownloadString'
- 'DownloadFile'
- 'Net.WebClient'
condition: selection_parent and selection_powershell and selection_args
falsepositives:
- Highly unusual manual administrator execution of hidden PowerShell one-liners via the Run dialog
level: critical// Microsoft Sentinel / Defender Hunting Query: Detect ClickFix Clipboard-to-Run PowerShell Execution
DeviceProcessEvents
| where Timestamp > ago(7d)
| where InitiatingProcessFileName =~ "explorer.exe"
| where FileName in~ ("powershell.exe", "pwsh.exe", "cmd.exe")
| where ProcessCommandLine has_any (
"-w hidden",
"-windowstyle hidden",
"elxxvvx",
"update2",
"third-party.com",
"draw.io.exe",
"FromBase64String",
"DownloadData"
)
| project Timestamp, DeviceName, ActionType, FileName, ProcessCommandLine, InitiatingProcessFileName, AccountName
| sort by Timestamp descNetwork Indicators & Malicious Domains
| Indicator Type | Value / Context | Operational Role |
|---|---|---|
| Lure Hostname | third-party[.]com | Unprotected documentation placeholder serving ClickFix CAPTCHA |
| Payload Distribution Host | elxxvvx[.]xyz | Staging host delivering secondary PowerShell loader (/f) |
| Staged Malware URL | https://elxxvvx[.]xyz/update2.zip | 134MB archive payload package |
File Artifacts & Process Telemetry
| Indicator Type | Value / Pattern | Operational Role |
|---|---|---|
| File Name | update2.zip / update26.zip | Downloaded archive containing malicious binaries |
| Executable File Name | draw.io.exe | Malicious packaged executable launched post-extraction |
| Ingress Vector | Windows Run Dialog (Win+R) | Exploited interactive execution primitive |
third-party.comelxxvvx.xyzhttps://elxxvvx.xyz/update2.zipdraw.io.exeupdate26.zip// VERIFIED_SOURCES_&_REFERENCES
Watch Full Video Briefings on YouTube
Subscribe to CyberNewsAI on YouTube for animated threat vectors, CISO breakdowns, and security briefings.
Related Threat Intelligence
View Archive
TeamFiltration Attacks Breach Microsoft 365 Cloud Accounts
The UNK_CondorFiltration campaign weaponized TeamFiltration against 28 Microsoft 365 tenants, compromising dormant service accounts with default passwords.

Ransomware Gangs Exploit Critical TeamCity Auth Bypass Flaw
CISA warns ransomware gangs are actively weaponizing a critical JetBrains TeamCity auth bypass flaw (CVE-2026-63077) to execute OS commands and hijack CI/CD.

Roundcube Webmail Pre-Auth SQLi CVE-2026-48842 Under Attack
A critical pre-auth SQL injection in Roundcube's virtuser_query plugin (CVE-2026-48842) is under active attack across 523,000 Internet-exposed webmail hosts.