Counterfeit Installer Campaign Shows Why Download Telemetry Matters

Counterfeit Installer Campaign Shows Why Download Telemetry Matters
Microsoft's latest campaign analysis is a useful reminder that initial access does not always begin with a novel exploit. In this case, the lure is familiar and effective: users search for trusted software, land on a convincing clone of a vendor download page, and receive an installer archive that looks routine enough to execute.
The campaign, disclosed by Microsoft Security Research and Microsoft Defender Experts on September 1, uses counterfeit software-download websites to impersonate legitimate vendors and distribute malware. Microsoft says the activity has affected organizations in healthcare, manufacturing, gaming, technology, logistics, government, and education, with a concentration around China-based operations and Chinese-speaking users.
That sector spread matters. This is not a narrow campaign against one brand's customers. The operators built a repeatable delivery system that can borrow the reputation of many different products while keeping the downstream infrastructure largely consistent. For defenders, the practical lesson is that brand impersonation, download referrers, archive naming patterns, and post-execution behavior need to be analyzed together.
What Microsoft Observed
The attack starts with spoofed download sites that clone legitimate vendor branding and present a direct download button. Microsoft documented impersonation pages for products including Microsoft Edge, Razer, Kaspersky, Sejda PDF, DiskGenius, draw.io, SteelSeries, Sogou, Calibre, and others. Many of the domains used .com.cn, .hl.cn, or .cn naming patterns that embedded the impersonated brand name.
When a user clicks the download button, the browser retrieves a malicious archive from a small set of delivery endpoints. One example tracked by Microsoft linked a fake Razer page to a delivery host serving app_setup.6653004.zip. Other archive naming patterns included app_setup.*, zinst.*, zintall.*, intsoft.*, and innstll.*.
The detail that should stand out for detection teams is payload regeneration. Microsoft observed archives that kept the same filename while changing hash values on repeated downloads. That makes traditional hash-only blocking brittle. It also makes the referrer chain and delivery endpoint more valuable than the archive filename alone.
Once executed, the installers create randomized executable paths under locations such as C:\Users\Public, C:\ProgramData, and C:\Program Files (x86). Some payloads masquerade as legitimate software components by using fabricated version metadata. Microsoft also observed execution through msiexec.exe, giving the campaign another path to run under a trusted Windows component.
Persistence, Evasion, And C2
After execution, the campaign moves quickly into persistence and defense evasion. Microsoft reported scheduled tasks with names that imitate normal IT or productivity jobs, launching payloads from C:\ProgramData on a recurring cadence. It also observed short-lived scheduled tasks used to run privileged actions as SYSTEM and then delete themselves.
The malware attempts to weaken endpoint defenses by adding Microsoft Defender exclusions, disabling Windows Update-related services, deleting volume shadow copies, and hardening payload directories so ordinary users cannot remove them. Those actions turn a fake download into a recovery problem: even if the initial installer is discovered, persistence and rollback inhibition can keep the host exposed.
Microsoft also observed command and control over non-standard ports and attacker-controlled infrastructure, including cloud object storage used for staging. In some environments, the activity was not purely automated; Microsoft saw hands-on-keyboard behavior and blocked attempted SMB lateral movement.
Microsoft assesses with moderate confidence that the activity is consistent with the publicly reported Silver Fox, also known as Yinhu, fake software campaign. It has not attributed the activity to a nation-state actor. That distinction is useful: the technical behaviors are actionable even when attribution remains uncertain.
Why This Is A Threat Hunting Story
The dominant defender action is not "patch one CVE." It is to improve visibility around software acquisition, archive execution, and post-download behavior. The best signals are behavioral and relational: where the file came from, which page referred the user to the download, how the archive was named, where the executable landed, what scheduled tasks appeared, and whether endpoint protections were modified.
For teams using Microsoft Defender XDR or Microsoft Sentinel, Microsoft published hunting logic that pivots on known payload hashes and behavior patterns. The broader point applies to any EDR or SIEM: detections should survive filename churn and domain rotation. A rule that only blocks one archive hash will age quickly. A hunt that links look-alike domains, delivery endpoints, randomized payload paths, scheduled task creation, Defender tampering, and unusual C2 ports has a better chance of catching the campaign as it changes.
This is also a social engineering problem. Users were not asked to approve a suspicious macro or bypass a security warning in an obviously malicious document. They were presented with software they intended to download. Security teams should treat download journeys as part of the attack surface, especially for utilities, drivers, browsers, productivity tools, and security software.
Defensive Priorities
First, enforce tamper protection and alert on attempts to modify endpoint security exclusions. Microsoft specifically calls out SYSTEM scheduled tasks writing Defender exclusion paths, vssadmin delete shadows /all /quiet, and attempts to disable Windows Update services as high-signal behaviors.
Second, inspect download referrers instead of relying only on final file names. FileOriginUrl and FileOriginReferrerUrl can reveal the relationship between a fake landing page and a rotating delivery host. That relationship is often more stable than a hash.
Third, block or detonate suspicious installer archives from look-alike domains, especially when brand-like domains under .com.cn or .hl.cn serve the naming patterns Microsoft documented. Treat archives from /712down, /73inst, /7qinst, and /ins711 delivery paths as high risk when they appear in web or mail flows.
Fourth, hunt for randomized executables under public or shared Windows paths, scheduled tasks that launch from those paths, and payloads masquerading with inconsistent version metadata. A legitimate-looking file description is not enough when the execution path, parent process, and persistence pattern do not fit normal software behavior.
Finally, review software download controls. Browser protection, web filtering, DNS monitoring, application control, and user education all have a role here. The campaign shows how quickly a convincing download page can become persistent access, defense evasion, and attempted lateral movement.
The practical takeaway is simple: defenders should not wait for a fake installer campaign to become a breach before instrumenting the download path. In campaigns like this, the first suspicious event may be a browser writing a ZIP from a look-alike vendor page. The decisive event may be a scheduled task that quietly brings the implant back every minute.
References
FAQ
Microsoft's latest campaign analysis is a useful reminder that initial access does not always begin with a novel exploit. In this case, the lure is familiar and effective: users search for trusted software, land on a convincing clone of a vendor download page, and receive an installer archive that looks routine enough to execute.