Vkhost

Category: trojan · Aliases: None known · Sample count (EMBER 2018): 2 · Enrichment: expert-seo · Updated: 2026-06-09
Category: TrojanActor: Unknown / CybercriminalIndustry: Global / OpportunisticMotivation: Opportunistic

Overview

Trojan:Win32/Vkhost is a specialized trojan and browser hijacker designed specifically to target users of 'VKontakte' (VK), the massively popular Russian social media platform. Its primary objective is to forcibly redirect the user's browser traffic intended for the legitimate VK site to phishing pages or servers controlled by the attacker, usually to steal login credentials or propagate spam.

Understanding Vkhost (Social Media Hijackers)
To an end-user, the infection becomes apparent when they attempt to log into `vk.com`. They may be presented with a fake login page that looks identical to the real one, or they may be served aggressive advertisements instead of their news feed. For a security analyst, this malware demonstrates the persistent abuse of local DNS resolution files (`T1562.002`) to bypass network-level security controls.

Execution and Hijacking Mechanics
Vkhost is typically distributed via deceptive software bundles, fake browser updates, or malicious links shared on social media. Upon execution, the malware requires administrative privileges. Its core functionality is incredibly simple but highly effective: it modifies the Windows `HOSTS` file (`C:\Windows\System32\drivers\etc\hosts`). By adding entries mapping `vk.com` and related domains to a malicious IP address, the malware intercepts the DNS resolution process at the host level (`T1562.002`). When the user types `vk.com`, the browser connects to the attacker's server instead of the legitimate VK infrastructure. It often establishes persistence via Registry Run keys (`T1547.001`) to ensure the HOSTS file entries are re-injected if the user attempts to remove them.

Indicators of Compromise & Impact
The impact is the theft of the user's social media identity, leading to potential secondary phishing attacks against their network. Host-based IoCs are definitive: EDR alerts for a process modifying the `HOSTS` file, and the presence of entries in the `HOSTS` file routing `vk.com` to unknown IP addresses. Network IoCs include the browser attempting to establish an HTTPS connection to the malicious IP, which will often result in a certificate error (as the attacker's server cannot present a valid SSL certificate for `vk.com`).

MITRE ATT&CK Techniques

Observed techniques used by this family, mapped to the MITRE ATT&CK framework:

TechniqueNameTactic
T1562.002Impair Defenses: Disable Windows Event Logging (Modifying the HOSTS file to redirect traffic)Defense Evasion
T1112Modify Registry (Establishing persistence to protect the HOSTS file modifications)Defense Evasion
T1056.002Input Capture: GUI Input Capture (Stealing credentials via the phishing overlay)Collection

Tactical Mitigations

Based on the techniques used by this family, consider the following defensive strategies:

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_VKHOST {
    meta:
        description = "Detects Vkhost (trojan)"
        author = "SystemHelpdesk Boilerplate Generator"
        date = "2026-07-06"
    strings:
        $s1 = "vkhost" ascii wide nocase
    condition:
        uint16(0) == 0x5a4d and any of them
}

Sigma Rule

title: Suspicious Vkhost Activity
id: 9e30c57bc5d53268a29aa01c983ea025
status: experimental
description: Detects generic indicators of the vkhost malware family.
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        Image|endswith:
            - '\cmd.exe'
            - '\powershell.exe'
        CommandLine|contains:
            - "*vkhost*"
    condition: selection
level: medium

Containment & Response Steps

Home Users: If you suspect a malware infection on your personal device, disconnect from the internet immediately and run a full system scan with your antivirus software. The steps below are intended for IT professionals responding to enterprise incidents.

Ordered checklist for responders. Adapt to your environment and engage professional support for active incidents.

  1. Open the `C:\Windows\System32\drivers\etc\hosts` file using a text editor running with Administrator privileges and delete the malicious VK entries.
  2. Run a full system scan to locate and remove the core Vkhost executable that is protecting the HOSTS file.
  3. Use a clean, separate device to immediately change the password for the compromised VK account and enable two-factor authentication.
  4. Clear the local DNS cache (`ipconfig /flushdns`) to ensure the browser routes to the correct infrastructure.

What to Avoid

Common mistakes during response to this family that can destroy evidence, spread the infection, or worsen recovery.

  1. Do not ignore SSL certificate warnings in the browser; if a major site like VK suddenly presents a certificate error, it is likely being hijacked.
  2. Avoid relying solely on network-level DNS filtering to block this threat, as the local HOSTS file overrides external DNS resolution.

References & External Analysis

Frequently Asked Questions

How do I remove the Vkhost Trojan from Windows?

Manual removal of Vkhost 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 Vkhost a virus or a Trojan?

Vkhost is classified as a Trojan. Unlike traditional viruses that infect files, modern malware like Vkhost typically operates as a standalone payload designed to compromise systems, steal data, or deploy secondary stage implants.

What are the main symptoms of a Vkhost infection?

Symptoms of Vkhost 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 Vkhost and similar threats from compromising your organization? Read our comprehensive defensive guide: Banking Trojan Protection.

Need help with an active incident? Published by the SystemHelpdesk team.

Machine-readable

Get this profile as JSON: https://jordan123234-malware-families-explorer.static.hf.space/api/vkhost.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.