Qqrob
Overview
Trojan:Win32/Qqrob is a highly specific Information Stealer designed to target users of the Tencent QQ instant messaging platform, which is massively popular in China. Its primary objective is to silently hook into the QQ application process (`T1055`), intercept user keystrokes (`T1056.001`), and steal login credentials and session tokens to hijack the victim's account.
Understanding Qqrob (Targeted Info-Stealers)
To an end-user, the infection might be completely unnoticeable until they find themselves locked out of their QQ account, or their contacts start receiving spam/phishing links from their hijacked profile. For a security analyst, Qqrob represents a localized, highly targeted threat that utilizes API hooking to bypass the encryption often employed by messaging clients.
Execution and Credential Theft Mechanics
Qqrob is typically distributed via malicious links sent within QQ itself, or bundled with fake QQ 'enhancement' tools (like VIP feature unlockers). Upon execution, it establishes persistence (often via the `Run` registry key). The core mechanism involves process injection (`T1055`): the trojan continuously monitors the system for the execution of `QQ.exe`. Once detected, Qqrob injects a malicious DLL into the QQ process space. This DLL uses API hooking (specifically targeting functions related to keyboard input or network transmission) to capture the user's password *before* the legitimate QQ client encrypts it for transmission to the Tencent servers (`T1056.001`). The stolen credentials are then transmitted via HTTP/SMTP to the attacker.
Indicators of Compromise & Impact
The impact is the total compromise of the user's QQ identity, often leading to secondary phishing attacks against their contacts. Host-based IoCs include EDR alerts for suspicious process injection specifically targeting `QQ.exe`, and the presence of unknown DLLs loaded into the QQ process memory space. Network IoCs include the trojan making outbound connections to non-Tencent IP addresses immediately following a QQ login event.
MITRE ATT&CK Techniques
Observed techniques used by this family, mapped to the MITRE ATT&CK framework:
| Technique | Name | Tactic |
|---|---|---|
T1056.001 | Input Capture: Keylogging (Hooking the QQ process to steal passwords) | Collection |
T1055 | Process Injection (Injecting into QQ.exe to facilitate the hook) | Defense Evasion |
T1566.002 | Phishing: Spearphishing Link (Primary distribution method via the messaging platform itself) | Initial Access |
Tactical Mitigations
Based on the techniques used by this family, consider the following defensive strategies:
- T1056.001: Implement Endpoint Detection and Response (EDR) to monitor for suspicious API calls related to keystroke interception. Enforce Multi-Factor Authentication (MFA) to render stolen passwords useless.
- T1566.002: Inspect email links for known malicious domains and use link-rewriting services for time-of-click analysis.
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_QQROB {
meta:
description = "Detects Qqrob (trojan)"
author = "SystemHelpdesk Boilerplate Generator"
date = "2026-07-06"
strings:
$s1 = "qqrob" ascii wide nocase
condition:
uint16(0) == 0x5a4d and any of them
}Sigma Rule
title: Suspicious Qqrob Activity
id: 9849e65a700d9a1e58ab38d771b95f45
status: experimental
description: Detects generic indicators of the qqrob malware family.
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
CommandLine|contains:
- "*qqrob*"
condition: selection
level: mediumContainment & Response Steps
Ordered checklist for responders. Adapt to your environment and engage professional support for active incidents.
- Immediately kill the `QQ.exe` process and isolate the machine to prevent further credential theft or exfiltration.
- Use a clean, separate device to immediately change the password for the compromised QQ account and enable two-factor authentication.
- Run a full system scan to locate and remove the core Qqrob executable and its associated persistence registry keys.
- Notify the user's contacts that the account was compromised to prevent the spread of the malware via secondary phishing.
What to Avoid
Common mistakes during response to this family that can destroy evidence, spread the infection, or worsen recovery.
- Do not attempt to log back into QQ on the infected machine until it has been completely wiped or forensically cleared.
- Avoid downloading unauthorized 'mods' or enhancement tools for messaging applications, as these are common vectors for Qqrob.
References & External Analysis
- Search "qqrob" on VirusTotal (External Analysis)
Frequently Asked Questions
How do I remove the Qqrob Trojan from Windows?
Manual removal of Qqrob 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 Qqrob a virus or a Trojan?
Qqrob is classified as a Trojan. Unlike traditional viruses that infect files, modern malware like Qqrob typically operates as a standalone payload designed to compromise systems, steal data, or deploy secondary stage implants.
What are the main symptoms of a Qqrob infection?
Symptoms of Qqrob 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 Qqrob 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/qqrob.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.