Hostspatcher
Overview
Riskware:Win32/Hostspatcher (or Trojan:Win32/Hostspatcher) is a specific classification for malware or Potentially Unwanted Applications (PUAs) whose primary function is to maliciously modify the Windows **HOSTS file** (`%SystemRoot%\System32\drivers\etc\hosts`). The HOSTS file is a local text file used by the operating system to map hostnames to IP addresses, overriding DNS. By altering this file, attackers can silently redirect a user's web traffic without touching the browser's settings.
Understanding the Hostspatcher Threat
To an end-user, the effects of a Hostspatcher are often baffling; they type `google.com` but end up on a search engine filled with ads, or they try to visit their bank but land on a perfect phishing replica. For a security analyst, unauthorized modification of the HOSTS file is a critical indicator of compromise, used for both aggressive adware injection and severe defense evasion.
Execution and Redirection Mechanics
Hostspatcher is usually dropped by secondary malware or deceptive software bundles (`T1189`). Upon execution with administrative privileges, the malware opens the local `hosts` file (`T1562.001`). It appends new routing rules. For example, to inject ads, it might map `www.yahoo.com` to the IP address of an attacker-controlled adware server (`T1112`). Crucially, to evade detection, Hostspatcher malware almost always adds entries mapping the update domains of major Antivirus vendors (e.g., `update.symantec.com`, `liveupdate.mcafee.com`) to `127.0.0.1` (localhost) or `0.0.0.0`. This effectively blinds the local AV, preventing it from downloading the new signatures needed to detect the malware.
Indicators of Compromise & Impact
The primary impact is the silent interception of web traffic and the crippling of local security defenses. Host-based IoCs include EDR alerts for any process (other than `notepad.exe` run by an admin) attempting to write to the `\drivers\etc\hosts` file. A manual review of the HOSTS file will reveal dozens or hundreds of unauthorized entries. Users may report 'Certificate Errors' when browsing, as the hijacked IP addresses will not have valid SSL certificates for the requested domain.
MITRE ATT&CK Techniques
Observed techniques used by this family, mapped to the MITRE ATT&CK framework:
| Technique | Name | Tactic |
|---|---|---|
T1562.001 | Impair Defenses: Disable or Modify Tools (Blocking AV updates via HOSTS) | Defense Evasion |
T1112 | Modify Registry / Local Files (Writing to the HOSTS file) | Defense Evasion |
T1556 | Modify Authentication Process (Redirecting to phishing sites) | Credential Access |
T1498 | Network Denial of Service (Routing traffic to localhost) | Impact |
Generated Detections (Boilerplate)
These YARA and Sigma rules are auto-generated based on the family name and aliases. They must be heavily tuned before deployment in a production environment.
YARA Rule
rule MALWARE_WIN_HOSTSPATCHER {
meta:
description = "Detects Hostspatcher (trojan)"
author = "SystemHelpdesk Boilerplate Generator"
date = "2026-07-06"
strings:
$s1 = "hostspatcher" ascii wide nocase
condition:
uint16(0) == 0x5a4d and any of them
}Sigma Rule
title: Suspicious Hostspatcher Activity
id: dec56b097b4c270b4e4adbaf7d4470b6
status: experimental
description: Detects generic indicators of the hostspatcher malware family.
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
CommandLine|contains:
- "*hostspatcher*"
condition: selection
level: mediumContainment & Response Steps
Ordered checklist for responders. Adapt to your environment and engage professional support for active incidents.
- Open Notepad as an Administrator, navigate to `%SystemRoot%\System32\drivers\etc\`, open the `hosts` file, and delete all unauthorized entries.
- Alternatively, use the Microsoft 'Fix It' tool or a command script to reset the HOSTS file to its Windows default state.
- Investigate how the malware gained administrative privileges to modify the file; look for concurrent exploitation or unauthorized privilege escalation.
- Run a full system scan with an updated enterprise AV, as Hostspatcher is rarely the only malware on the system; it is usually a precursor to prevent detection of a larger threat.
What to Avoid
Common mistakes during response to this family that can destroy evidence, spread the infection, or worsen recovery.
- Do not assume the network DNS servers are compromised if a user reports misdirection; always check the local HOSTS file first.
- Avoid giving standard users local administrator privileges, as modifying the HOSTS file requires elevated rights.
References & External Analysis
- Search "hostspatcher" on VirusTotal (External Analysis)
Frequently Asked Questions
How do I remove the Hostspatcher Trojan from Windows?
Manual removal of Hostspatcher is highly discouraged as it may leave persistence mechanisms intact. We recommend disconnecting the device from the internet and utilizing a professional incident response service or enterprise-grade EDR software to conduct a full forensic sweep.
Is Hostspatcher a virus or a Trojan?
Hostspatcher is classified as a Trojan. Unlike traditional viruses that infect files, modern malware like Hostspatcher typically operates as a standalone payload designed to compromise systems, steal data, or deploy secondary stage implants.
What are the main symptoms of a Hostspatcher infection?
Symptoms of Hostspatcher can include unexpected system slowness, unauthorized outbound network traffic to unknown IP addresses, disabled security software, and suspicious background processes running from AppData or Temp directories.
Related Families (Category: trojan)
Explore other malware families in the same category:
Protect Your Network Against Trojans
Want to prevent Hostspatcher and similar threats from compromising your organization? Read our comprehensive defensive guide: Banking Trojan Protection.
Machine-readable
Get this profile as JSON: https://jordanricky1604-ship-it.github.io/malware-families-catalog/api/hostspatcher.json
Ecosystem & Interactive Environments
This profile is part of the Malware Families Catalog, a public dataset of 2,899 malware families. The catalog is also published across our ecosystem: Hugging Face, Kaggle, Zenodo, Replit, StackBlitz, CodeSandbox, and CodePen.