THE HUNTER’S LEDGER
Loader / Stealer · November 21, 2025

Hybrid Ecosystem Masquerading as Sogou

Contents

Campaign Identifier: Sogou-Hybrid-Loader-Stealer-Ecosystem
Last Updated: November 21, 2025
Threat Level: MEDIUM


BLUF (Bottom Line Up Front)

The installer masquerading as cracked Sogou Input Method is the delivery mechanism for a live cybercrime hub. Reverse engineering confirms a two-stage hybrid loader/stealer: a wrapper that establishes persistence and drops components, followed by an embedded payload performing surveillance, credential theft, privilege escalation, and covert C2 communication. An exposed directory at 27[.]184[.]28[.]134:8081 revealed an active QingLong Panel — a task-automation framework — with a valid authentication token proving operators are authenticated and executing jobs, including JD[.]com cookie theft, IPTV piracy scripts, and Android malware distribution. Command-and-control routes through disposable ccTLD domains (6[.]ar, J[.]im) resolving to Argentina and Amazon AWS infrastructure. A benign promotional document found alongside the malware links the technical operation to commercial monetization channels (Taobao, WeChat).

Key Risk Factors

Risk Factor Score Business Impact
Active Infrastructure 9/10 Live cybercrime hub with authenticated operators actively distributing malware
Data Theft Scale 8/10 JD.com cookie theft, credential harvesting, and financial fraud targeting e-commerce
Persistence Mechanisms 9/10 Two-stage infection chain with multiple redundant persistence vectors
Operational Sophistication 8/10 Automation frameworks, disposable infrastructure, and professional criminal operations
  1. ISOLATE systems with Sogou Input Method installations
  2. BLOCK network access to identified infrastructure (27[.]184[.]28[.]134:8081, related domains)
  3. INVESTIGATE potential JD.com credential compromise
  4. COLLECT forensic evidence including memory dumps and network logs

Executive Summary

The cracked Sogou Input Method file is the entry point for a multi-purpose cybercrime operation, not an isolated malware sample. Infrastructure analysis of the exposed directory at 27[.]184[.]28[.]134:8081 revealed a live QingLong Panel — a task-automation framework (see §Comprehensive Malware Analysis) — with Android malware, JD[.]com cookie-stealing tools, IPTV piracy scripts, and orchestration utilities alongside the Windows installer. A valid authentication token (token.json) confirms operators are authenticated and executing scheduled jobs; logs show token generation and RTSP streaming services are active.

The installer itself is a multi-component NSIS package blending malicious binaries with legitimate Sogou resources (beacon_sdk.dll, SGDownload.exe, UrlSignatureV.dat) to enable persistence, obfuscation, and covert C2 communication disguised as certificate validation or Sogou updates. The infection chain runs in two stages: the wrapper establishes persistence, requests elevated permissions, and drops embedded components; the embedded payload then performs surveillance (screenshots, webcam, clipboard), privilege escalation, redundant persistence, and data exfiltration — together forming a hybrid loader/stealer-RAT ecosystem.

Command-and-control relies on disposable ccTLD domains and cloud IPs (6[.]ar → 149[.]50[.]136[.]243, J[.]im → 52[.]20[.]84[.]62). A benign Word document (如意素材库.docx) found in the directory promotes a Taobao shop and WeChat ID, connecting the technical infrastructure to commercial monetization channels. The operator’s goal is scalable fraud, piracy, and credential monetization, managed under a single automation framework.

Comprehensive Malware Analysis

File Overview

Attribute Value Confidence Level
Original Filename 搜狗拼音输入法v15.1.0.1570去广告精简优化版无毒_吾爱破解.exe CONFIRMED
Translated Filename "Sogou Pinyin Input Method v15.1.0.1570 Ad‑Free Streamlined Optimized Edition No Virus 52pojie.exe" CONFIRMED
Malware Type Hybrid Loader/Stealer with Ecosystem Integration CONFIRMED
File Type PE32 executable (Windows GUI), Intel 80386 CONFIRMED
Packaging Nullsoft NSIS installer CONFIRMED
Threat Level CRITICAL - Active cybercrime infrastructure CONFIRMED

Hash Information

Hash Type Value
MD5 794379156eac28ce695051581aad5c9b
SHA1 8be1b21855e8d4bb68230285a5e8e16b71f043ef
SHA256 a8e2069fed11ed84c2e45773b0d4de082bb820618b2f915508ae5682fa96be63

Context of File Name

  • Crafted to appear as a cracked, “clean” version of Sogou Input Method.
  • “Ad‑free” and “optimized” appeal to users seeking modified builds.
  • “No virus” reassurance is ironically suspicious.
  • “52pojie” ties it to a Chinese cracking forum, a common malware distribution vector.

Installer‑Specific Observations

NSIS Installer Packaging

  • Scriptable installer allows attackers to define custom actions (copy files, run commands, drop payloads).
  • Security tools often treat installers as benign, hiding malicious payloads until runtime.

Installer Dialog Controller Highlights

  • References to IShellLink usage suggest dialog control and shortcut manipulation.
  • Malware may suppress dialogs, silently install payloads, or modify shortcuts to point to malicious executables.

Masquerade via Installer Metadata

  • Metadata claims to be Sogou Input Method v15.1.0.1570.
  • Legitimate Sogou installers use different packaging formats.
  • Contains XOR‑encoded configuration blobs, disposable domains, persistence mechanisms, and collection features (screenshots, webcam, clipboard).

Installer Persistence Hooks

  • Shortcut creation ensures persistence immediately after installation.
  • Stealthier than registry run keys alone.

Dual Behavior of Installer

  • Presents a familiar “Install Wizard” interface.
  • Executes persistence, LNK manipulation, and payload execution in the background.

Capability Findings Summary

  • File System: Create/delete/copy/move files, read/write, enumerate recursively, read .ini files.
  • Registry: Create/open/delete registry keys and values.
  • Process & Privilege: Create processes/threads, access token manipulation.
  • Collection: Webcam capture, screenshots, clipboard theft.
  • Crypto/Encoding: CRC32 hashing, XOR encoding.
  • Anti‑Analysis: VM detection (Xen strings), anti‑debugging APIs.
  • Persistence: Shortcut modification via IShellLink API.
  • Impact: System shutdown/reboot.

Expanded Capability Findings

Analyst note: This section details the specific technical capabilities identified through static analysis tools. Each capability was confirmed by observed API calls, function signatures, or behavioral patterns — not inferred from the filename or metadata alone. Understanding these capabilities helps defenders know what to look for in endpoint telemetry.

File System Manipulation

  • Evidence: Capability analysis tool (Capa) flagged capabilities to create, delete, copy, and move files and directories, as well as read/write operations and recursive enumeration. It also detected the ability to read .ini files.
  • Reasoning: .ini files often store application settings, credentials, or environment details. Reading them can allow malware to harvest sensitive information or hijack application behavior.
  • Impact:
    • Enables the attacker to drop payloads, delete evidence, and search for sensitive files.
    • Using .ini files as stealthy config storage complicates detection.
    • Direct file manipulation supports persistence and data theft.

Registry Modification

  • Evidence: Detected creation, opening, and deletion of registry keys and values.
  • Reasoning: Registry manipulation is a common persistence technique, allowing malware to auto‑start or alter system behavior.
  • Impact:
    • Ensures persistence across reboots.
    • Allows modification of system policies or application settings.
    • Provides stealthy storage for configuration data.

Process & Privilege Manipulation

  • Evidence: The capability analysis tool flagged process creation, thread spawning, and access token manipulation.
  • Reasoning: These capabilities enable execution of other programs, injection into legitimate processes, and privilege escalation.
  • Impact:
    • Expands attacker control over the system.
    • Enables stealthy execution of payloads.
    • Privilege escalation allows bypassing user restrictions and disabling security tools.

Collection Capabilities

  • Evidence: Functions to capture webcam images, take screenshots, and read/write clipboard data.
  • Reasoning: These features directly target user activity and sensitive information.
  • Impact:
    • Screenshots can reveal banking sessions, emails, or private communications.
    • Webcam capture compromises user privacy.
    • Clipboard theft enables credential harvesting (e.g., passwords, crypto wallet addresses).

Cryptography & Encoding

  • Evidence: CRC32 hashing and XOR encoding detected.
  • Reasoning: These are lightweight obfuscation techniques used to conceal configuration data or stolen information.
  • Impact:
    • Obfuscation complicates detection and analysis.
    • CRC32 may be used for integrity checks, ensuring payloads are not corrupted.
    • XOR encoding hides C2 domains and tokens from static inspection.

Anti‑Analysis Features

  • Evidence: Detection of virtualization strings (Xen) and anti‑debugging APIs (FindWindowExA, GetLastError).
  • Reasoning: These checks allow malware to evade sandboxes and frustrate reverse engineers.
  • Impact:
    • Prevents execution in virtualized environments used by analysts.
    • Delays reverse engineering, prolonging operational lifespan.
    • Reduces likelihood of detection in automated malware analysis pipelines.

Persistence via Shortcuts

  • Evidence: IShellLink API usage flagged, confirming shortcut creation/modification.
  • Reasoning: Malware can booby‑trap .lnk files so that when a user clicks what looks like a normal program, the malware executes.
  • Impact:
    • Stealthier than registry run keys alone.
    • Blends into normal user behavior, making detection harder.
    • Ensures persistence even if registry entries are removed.

System Impact

  • Evidence: Functions enabling system shutdown and reboot identified.
  • Reasoning: These are not part of legitimate Sogou Input Method functionality.
  • Impact:
    • Can disrupt system availability.
    • May be used to force reboots that activate persistence mechanisms.
    • Potentially disruptive to user productivity and data integrity.

Analyst Notes

Capability analysis confirms the malware is multi‑functional, combining persistence, evasion, collection, and disruption.
Evidence shows deliberate use of obfuscation and anti‑analysis to resist detection.
Impact analysis highlights the attacker’s ability to steal sensitive data, maintain persistence, and evade defenses, all while masquerading as trusted software.

YARA Hits

  • General Traits: PE32 Windows executable, packed, overlay present.
  • Crypto/Encoding: CRC32 hashing, base64 encoding.
  • Privilege/Registry: Escalation, registry manipulation, token abuse.
  • Collection: Screenshot capture confirmed.
  • Cross‑Platform Overlap: Code patterns resemble Android Meterpreter routines.
  • Network Indicators: Presence of IP/URL/domain rules.

Expanded YARA Hits

Analyst note: YARA rules are pattern-matching signatures used to identify malware traits from static file content — think of them as fingerprints for code patterns, file structures, and embedded strings. Each hit below represents a specific pattern that fired against this binary and what it reveals about the malware’s design.

The scan produced several hits that provide insight into the malware’s composition and lineage.

General Traits

  • Evidence: Rules flagged IsPE32, IsWindowsGUI, IsPacked, HasOverlay, and HasRichSignature.
  • Reasoning: These confirm the file is a Windows PE32 executable, GUI‑based, and likely packed with additional data in overlay sections.
  • Impact:
    • Confirms the sample is a Windows binary, not a cross‑compiled artifact.
    • Packing and overlays suggest deliberate obfuscation, complicating static analysis.
    • The presence of a Rich header indicates compilation with Microsoft toolchains, consistent with Windows malware.

Cryptography & Encoding

  • Evidence: Hits included CRC32_poly_Constant and possible_includes_base64_packed_functions.
  • Reasoning: These signatures identify CRC32 hashing and base64 encoding routines.
  • Impact:
    • CRC32 may be used for integrity checks or lightweight obfuscation.
    • Base64 encoding is often used to conceal configuration data or exfiltrated information.
    • Together, these routines confirm the malware employs multiple encoding strategies to evade detection.

Privilege & Registry Manipulation

  • Evidence: Rules flagged escalate_priv, win_registry, win_token, and win_files_operation.
  • Reasoning: These signatures confirm the malware’s ability to escalate privileges, manipulate the Windows registry, abuse tokens, and perform file operations.
  • Impact:
    • Confirms persistence mechanisms (registry run keys).
    • Confirms privilege escalation capabilities, enabling deeper system compromise.
    • File operations support payload delivery and evidence cleanup.

Collection Capabilities

  • Evidence: A screenshot rule fired, confirming the ability to capture screen content.
  • Reasoning: This aligns with capability analysis findings and API imports for screen capture.
  • Impact:
    • Enables theft of sensitive visual information (credentials, financial sessions, private communications).
    • Confirms surveillance functionality beyond simple data theft.

Android Meterpreter Overlap

  • Evidence: A rule flagged android_meterpreter.
  • Reasoning: While the file is clearly a Windows PE32 executable, some code patterns resemble those used in Android exploitation frameworks, specifically Metasploit’s Android Meterpreter payload.
  • Impact:
    • Indicates code reuse or borrowing of routines across platforms.
    • Suggests the malware author may have adapted existing offensive tooling.
    • Indicates code reuse from existing offensive tooling rather than building all functionality from scratch.

Network Indicators

  • Evidence: IP/URL/domain rules fired, confirming the presence of hardcoded network indicators.
  • Reasoning: These align with XOR‑decoded domains and endpoint tokens found during config extraction.
  • Impact:
    • Confirms the malware is designed for active C2 communication.
    • Provides concrete IOCs for defenders to block or hunt in network traffic.

Analyst Notes

YARA hits corroborate the capability analysis tool and PE analysis tool (peframe) findings, reinforcing evidence of persistence, privilege escalation, collection, and obfuscation.
The Android Meterpreter overlap is particularly notable — it suggests cross‑platform code reuse, which may explain why the ecosystem also contained Android malware in the exposed directory.
Network indicator hits tie directly to decoded domains, strengthening the case for active C2 infrastructure.

peframe Results

  • Features: Mutex creation, anti‑debugging, cryptographic routines.
  • Behavior: XOR encoding, privilege escalation, screenshot capture, registry manipulation, token abuse, file operations.
  • Crypto: CRC32 hashing for obfuscation and integrity checks.
  • Imports: Heavy use of Windows APIs (ADVAPI32, SHELL32, USER32, KERNEL32).
  • Suspicious APIs: CreateFileA, CreateProcessA, CreateThread, DeleteFileA, CopyFileA, FindWindowExA.
  • Suspicious Sections: .text flagged for anomalies.
  • Metadata: Masquerades as Sogou Input Method.

Expanded peframe Results

Analyst note: PE (Portable Executable) analysis examines a Windows binary’s internal structure — its metadata, imported functions, sections, and anomalies — without running it. The findings below reveal what capabilities the binary declares at the structural level, corroborating the behavioral evidence from capability analysis and YARA.

The PE analysis tool (peframe) provided additional context on the malware’s structure, metadata, and suspicious behaviors. Below is a structured breakdown with evidence and operational impact.

Metadata & Masquerade

  • Evidence: The file metadata claimed to be “Sogou Input Method v15.1.0.1570 去广告精简优化版” (ad‑free optimized version). However, the compilation details and overlay sections did not match legitimate Sogou installers.
  • Reasoning: Legitimate installers use proprietary packaging and do not include obfuscation layers or suspicious API imports.
  • Impact: Confirms masquerading — the malware disguises itself as trusted software to lower suspicion and increase infection rates.

Overlay & Packing

  • Evidence: The PE analysis tool detected a large overlay section appended to the binary.
  • Reasoning: Overlays are often used to store encoded configuration data, payloads, or resources. In this case, XOR decoding confirmed the overlay contained domains and endpoint tokens.
  • Impact: Packing and overlays complicate static detection. They conceal infrastructure details until decoded, prolonging the malware’s stealth.

Mutex Creation

  • Evidence: A mutex string was identified in the binary.
  • Reasoning: Mutexes are used to ensure only one instance of the malware runs at a time, preventing conflicts or duplicate infections.
  • Impact: Confirms deliberate design for stability. Mutexes also provide forensic value — analysts can hunt for the mutex string in memory or logs to detect infections.

Suspicious API Imports

  • Evidence: The PE analysis tool flagged imports such as CreateProcessA, CreateThread, FindWindowExA, GetLastError, CopyFileA, and registry manipulation functions.
  • Reasoning: These APIs enable process creation, thread spawning, anti‑debugging checks, file manipulation, and persistence.
  • Impact: Confirms multi‑functional capabilities: execution, evasion, collection, and persistence. These APIs are consistent with capability analysis and YARA findings, reinforcing the behavioral profile.

Anti‑Debugging & Anti‑Analysis

  • Evidence: API imports (FindWindowExA, GetLastError) and string checks for virtualization environments (Xen) were detected.
  • Reasoning: These functions allow the malware to detect debugging tools or sandbox environments.
  • Impact: Confirms deliberate resistance to analysis. Automated sandbox systems may fail to detect the malware, prolonging its operational lifespan.

Network Indicators

  • Evidence: Hardcoded domains and IPs were identified in the binary, consistent with XOR‑decoded configuration.
  • Reasoning: These indicators align with disposable ccTLDs and cloud IPs used for C2.
  • Impact: Provides concrete IOCs for defenders. Confirms the malware is designed for active communication with external infrastructure.

Analyst Notes

PE analysis tool results corroborate capability analysis and YARA findings, strengthening confidence in the behavioral assessment.
The overlay section was critical — it concealed XOR‑encoded domains and tokens, proving the malware’s reliance on obfuscation.
Mutex creation and suspicious API imports confirm deliberate design for persistence, evasion, and collection.
Overall, PE analysis reinforces the conclusion that the installer is a multi‑purpose stealer/loader, masquerading as trusted software while embedding stealth and resilience.

Key Traits:

  • Multiple persistence mechanisms (registry + LNK).
  • Defense evasion via obfuscation and anti‑VM checks.
  • Broad surveillance capabilities (screenshots, webcam, clipboard).
  • Impact includes system disruption.
  • C2 infrastructure relies on disposable ccTLDs and cloud IPs.
  • Masquerade lowers suspicion by mimicking trusted software.

XOR Decoding & Config Extraction

Analyst note: XOR is a simple reversible encoding operation where each byte of data is combined with a key value to produce an encoded output — the same operation with the same key decodes it. Malware uses XOR encoding to hide C2 addresses and tokens from casual static inspection; analysts recover the plaintext by applying the same key in reverse.

  • Decoded Domains: 5bNG.ar, 6.ar, B.tk, J.im, K.ct, Q.ar, rlh.cq, s0.ndf, vpl.gu, X.pg.
  • Endpoint Token: CGI1 (suggests /cgi1 path).
  • Resolution Results:
    • 6.ar → 149.50.136.243 (Argentina registry).
    • J.im → 52.20.84.62 (Amazon AWS).
    • Others expired or placeholders.

Infrastructure Analysis

WHOIS & IP Enrichment

149.50.136.243

  • Hostname: vps-3906667-x.dattaweb.com
  • City/Region: Rosario, Santa Fe, Argentina
  • Country: Argentina (AR) – network registered via Cogent Communications (US)
  • OrgName: Cogent Communications, LLC / DATTATEC.COM S.R.L. (Donweb hosting)
  • ASN: AS27823 – Dattatec.com (donweb.com)
  • Route: 149.50.136.0/24
  • Type: Hosting
  • Timezone: America/Argentina/Cordoba
  • Abuse Contact: abuse@cogentco.com, +1-877-875-4311
  • Domains Hosted: ~207 total (examples: 1000.ar, 2.tur.ar, pumas.ar, transporte.ar, permutas.ar)
  • Impact: Disposable VPS infrastructure in Argentina, hosted by Donweb/Cogent. Likely used for short-lived C2 servers.

52.20.84.62

  • Hostname: ec2-52-20-84-62.compute-1.amazonaws.com
  • City/Region: Ashburn, Virginia, US
  • Country: United States (US)
  • OrgName: Amazon Technologies Inc.
  • ASN: AS14618 – Amazon.com, Inc.
  • Route: 52.20.0.0/14
  • Type: Hosting (Amazon EC2)
  • Timezone: America/New_York
  • Abuse Contact: trustandsafety@support.aws.com, +1-206-555-0000
  • Domains Hosted: ~765,002 total (examples: infopetworld.com, hoho.ai, recipesandcooker.com, stackpathcdn.com, playersb.com)
  • Impact: Amazon EC2 instance in Ashburn, VA. Reflects attacker reliance on cloud infrastructure for disposable C2 nodes.

Infrastructure Enrichment: IPs and Hosted Domains

149.50.136.243

  • Hostname: vps-3906667-x.dattaweb[.]com
  • Domains Hosted: ~794 (examples: promo.tur[.]ar, ciudades.tur[.]ar, 80[.]ar, 90[.]ar, ciudad[.]ar, solar[.]ar, comidas[.]ar, bicis[.]ar, hipodromo[.]ar, comercios[.]ar, permutas[.]ar, verde[.]ar, commerce[.]ar, vacaciones.tur[.]ar)
  • WHOIS Registrants: Multiple domains registered through Hostmar.com infrastructure
  • ASN/ISP: AS27823 – Dattatec.com / Donweb (Argentina), upstream Cogent Communications (US)

Open Ports & Services (149.50.136.243)

  • Port 21: FTP (ProFTPD) – Active, last seen 11/16/2025
  • Port 80: HTTP (Apache HTTPD) – Active, last seen 11/13/2025
  • Port 110: POP3 (Dovecot) – Active, last seen 11/11/2025
  • Port 143: IMAP – Active, last seen 11/15/2025
  • Port 443: HTTPS – Active, last seen 11/15/2025
  • Port 993: TLS/IMAP – Active, last seen 11/16/2025
  • Port 995: TLS/POP3 – Active, last seen 11/15/2025
  • Ports 2082–2095: HTTP/TLS (Apache HTTPD / misc, cPanel-style ports) – Active, last seen 11/09–11/16/2025
  • Port 5465: SSH (OpenBSD OpenSSH 7.4) – Active, last seen 11/14/2025

Impact (149.50.136.243):

  • Hosting dozens of .ar domains with malware/phishing reputations.
  • Services (FTP, mail, Apache on multiple ports) suggest shared hosting/reseller environment exploited for disposable C2 and phishing.
  • Domain reuse across .ar sites indicates centralized ownership or small operator group.

52.20.84.62

  • Hostname: ec2-52-20-84-62.compute-1.amazonaws.com
  • Domains Hosted: ~1.5M (examples: 1-3[.]shop, 1-4[.]shop, 11-11wish[.]cloud, 3000bc[.]xyz, aslo[.]xyz)
  • ASN/ISP: AS14618 – Amazon.com, Inc. (Amazon EC2, Ashburn VA)

Open Ports & Services (52.20.84.62)

  • Port 80: HTTP (TCPWRAPPED) – Active, last seen 11/16/2025
  • Port 443: HTTPS (TLS/HTTP) – Active, last seen 11/11/2025

Impact (52.20.84.62):

  • Massive domain hosting footprint with numeric naming conventions (number-number.shop).
  • Clear evidence of Amazon EC2 abuse for disposable phishing/malware campaigns.
  • Scale (~1.5M domains) complicates attribution but naming patterns provide detection pivot points.

Analyst Notes

149.50.136.243: Hosted in Argentina via Donweb/Dattatec, registered under Cogent Communications (US). Dual attribution highlights attacker’s use of regional hosting with international upstreams.
52.20.84.62: Amazon EC2 node in Ashburn, VA. Massive domain count shows shared cloud environment abuse. Attackers exploit churnable infrastructure for stealth and scalability.
Follow-up investigation identified a domain in a LNK file pointing to 423down[.]com, which resolved to 45.151.132[.]50 as of 11/23/2025. The site presented a download page with links to additional sites and downloads consistent with the other activities observed on this directory. These artifacts were added to the IOC feed on 11/23/2025.

Operational Impact: Both IPs confirm reliance on cheap ccTLDs + disposable hosting/cloud services to maintain short-lived, churnable C2 servers.

Behavioral Assessment

Masquerade

  • Evidence: The installer metadata explicitly claims to be “Sogou Input Method v15.1.0.1570,” a legitimate release line. However, the packaging format is NSIS (not used by Sogou), and the binary contains XOR‑encoded configuration blobs, disposable domains, and persistence mechanisms. Legitimate Sogou installers do not include anti‑VM checks, screenshot capture, or clipboard theft.
  • Impact: Users are tricked into trusting the installer because it looks like a well‑known application. This lowers suspicion and increases infection rates, especially among those seeking cracked or “ad‑free” builds.

Installer Abuse

  • Evidence: Reverse engineering revealed NSIS scripting combined with IShellLink usage. At runtime, the installer executes persistence routines, modifies shortcuts, and drops payloads while presenting a normal “Install Wizard” interface. Logs and runtime analysis confirmed payload execution begins immediately at the entry point, even as dialogs appear to function normally.
  • Impact: Victims believe they are installing legitimate software, but malicious actions occur silently in the background. This dual behavior makes detection harder and ensures persistence is established before the user realizes anything is wrong.

Persistence

  • Evidence: The capability analysis tool flagged IShellLink API calls, confirming shortcut creation/modification. Registry manipulation was also observed, with auto‑start entries created during installation. Suspicious .lnk files pointing to executables in %AppData% and %Temp% were identified.
  • Impact: Persistence is achieved through multiple mechanisms. Even if registry entries are removed, shortcut modifications ensure the malware continues to execute. This redundancy increases resilience against basic remediation attempts.

Defense Evasion

  • Evidence: XOR and CRC32 encoding were used to obfuscate configuration data. Anti‑VM checks (Xen strings) and anti‑debugging APIs (FindWindowExA, GetLastError) were identified in the binary. Packed sections and anomalies in the .text segment further confirm obfuscation.
  • Impact: These techniques hinder sandbox analysis and frustrate reverse engineers. Automated detection tools may miss the malware due to packing and obfuscation, while analysts face delays caused by anti‑debugging routines. This prolongs the malware’s operational lifespan.

Collection

  • Evidence: Capability analysis and YARA hits confirmed capabilities to capture screenshots, record webcam images, and read/write clipboard data. API imports (CreateFileA, CopyFileA) support file manipulation for exfiltration.
  • Impact: The malware can steal sensitive visual and textual information, including credentials copied to the clipboard, private webcam feeds, and screenshots of banking or e‑commerce sessions. This enables credential theft, account hijacking, and privacy violations.

Privilege Escalation

  • Evidence: Access token manipulation was flagged, allowing the malware to modify privileges and escalate execution rights. Capability analysis findings and suspicious API usage (CreateProcessA, CreateThread) corroborate this.
  • Impact: Privilege escalation allows the malware to bypass user restrictions, install additional payloads, and disable security tools. It increases the attacker’s control over the system and enables deeper persistence.

Impact (System Disruption)

  • Evidence: Functions enabling system shutdown and reboot were identified. These are not part of legitimate Sogou Input Method functionality.
  • Impact: The malware can disrupt system availability, either as a sabotage tactic or to force reboots that activate persistence mechanisms. This can cause data loss, downtime, and user frustration.

Command & Control (C2)

  • Evidence: XOR decoding revealed disposable domains (6.ar, J.im) and endpoint tokens (CGI1). Resolution confirmed active IPs (149.50.136.243, 52.20.84.62). Traffic patterns mimic certificate validation (ocsp.digicert.com, crl3.digicert.com) and legitimate Sogou updates (get.sogou.com, ping.pinyin.sogou.com).
  • Impact: By blending malicious traffic with legitimate certificate checks and software updates, the malware evades detection by network monitoring tools. Disposable domains and churnable cloud IPs ensure C2 infrastructure can be quickly replaced, complicating takedown and attribution.

Analyst Notes (Expanded)

The malware’s dual installer behavior is particularly dangerous: evidence shows payload execution begins immediately at installation, while the user sees a normal wizard. This ensures persistence is established before suspicion arises.
Defense evasion is layered and deliberate, combining obfuscation, packing, anti‑VM, and anti‑debugging. This frustrates both automated and manual analysis.
Collection capabilities target multiple data sources, enabling credential theft, surveillance, and fraud.
Privilege escalation and system disruption expand attacker control, allowing sabotage or forced reboots to activate persistence.
C2 infrastructure is disposable, cloud‑based, and disguised as legitimate traffic, making detection and takedown difficult.

Document Triage Findings

File Analyzed

  • Filename: 如意素材库.docx
  • Hashes:
    • MD5: 259b7806c2c9cade90acb0f18d940197
    • SHA1: 97f5b1508079584568d7f773d166d441097064b4
    • SHA256: 4e987719ab96064594c98b62000612f90fe4c34c08161c290ec3898f100f6891

Metadata

  • Created with: Apache POI in 2019
  • Evidence: Apache POI is a Java library used to programmatically generate Office documents. This indicates the file was not authored manually in Microsoft Word but produced automatically, likely as part of a batch or scripted distribution process.
  • Impact: Programmatic generation suggests scalability — the operator could mass‑produce promotional flyers to bundle with cracked installers or APKs, increasing reach.

AV/YARA Results

  • Detections: None
  • Evidence: Multiple AV engines and YARA rules were run against the file, with zero hits.
  • Impact: Confirms the file is benign from a technical standpoint. It does not contain embedded malware or exploit payloads.

OOXML Unpack

  • Relationships and XML parts: Reference only standard Office schemas.
  • Evidence: Manual unpacking of the OOXML structure showed only default Office schema references. No signs of obfuscation or hidden objects.
  • Impact: Reinforces the conclusion that the document is safe to open.

Document Content

  • Text: Chinese promotional content for a Taobao shop: “如意素材库” (Ruyi Material Library).
  • WeChat Contact: rysc2019
  • Evidence: Plain text strings extracted from the document clearly reference the shop name and WeChat ID. No hidden layers or encoded content were found.
  • Impact: While benign, these identifiers are valuable for attribution. They likely represent commercial channels used by the operator to advertise pirated services, cracked software, or stolen accounts.

ATT&CK Mapping (Heuristic Flag)

  • Technique: Web Protocols for C2 (T1071.001) flagged heuristically due to schema URLs.
  • Evidence: The flag was triggered by benign Office schema references (e.g., http://schemas.openxmlformats.org).
  • Impact: This is a false positive. Analysts must be cautious not to misinterpret benign schema references as malicious infrastructure.

Assessment

  • Benign Nature: The document contains no macros, embedded objects, or malicious payloads.
  • Promotional Role: Functions as a lightweight flyer pointing to commercial channels (Taobao shop and WeChat ID).
  • Evidence of Intent: Programmatic generation via Apache POI suggests deliberate distribution at scale.

Operational Impact

  • Low technical risk: The file itself cannot infect systems.
  • High intelligence value: Identifiers provide pivot points for OSINT investigations.
  • Connection: Links technical infrastructure (malware, automation, piracy) with commercial outreach (mainstream platforms like Taobao and WeChat).

Linkage Analysis: Promotional Document and Cybercrime Hub

Context

During the broader investigation, a benign Microsoft Word document (如意素材库.docx) was discovered. While technically safe, its content provided identifiers that connect the technical infrastructure (malware, automation, piracy) with commercial outreach channels (Taobao and WeChat).


Evidence and Reasoning

WeChat ID (rysc2019)

  • Evidence: Extracted directly from the document’s text. No obfuscation or encoding was present.
  • Reasoning: WeChat is widely used in China for communication and payments. Underground operators often use WeChat IDs as direct contact points for customers purchasing pirated IPTV streams, stolen JD.com accounts, or cracked software.
  • Impact: This identifier provides a pivot for OSINT investigations. It links the operator’s technical ecosystem to a mainstream communication/payment platform, showing how monetization is facilitated.

Taobao Shop (“如意素材库 / Ruyi Material Library”)

  • Evidence: Promotional text in the document explicitly references this shop.
  • Reasoning: Taobao is a legitimate e‑commerce platform. By advertising a shop name, the operator creates a “legitimate‑looking” front to attract buyers. Transactions for illicit services may be funneled through Taobao for visibility, while WeChat handles off‑platform payments.
  • Impact: This demonstrates how the ecosystem blends underground automation with mainstream platforms. The shop name can be used to trace seller activity, reviews, or linked accounts, offering attribution opportunities.

Strategic Role of the Document

  • Evidence: Metadata shows programmatic generation via Apache POI, suggesting the document was mass‑produced. Content is lightweight, containing only promotional identifiers.
  • Reasoning: The document functions as a flyer — distributed alongside cracked installers or APKs to advertise services. Its benign nature ensures it bypasses AV detection.
  • Impact: While not malicious, the document is a distribution vector for commercial identifiers, bridging technical malware campaigns with monetization channels.

Operational Impact

  • Integration of Technical and Commercial Layers: The benign document proves the operator is not only running malware infrastructure but also actively advertising services.
  • Attribution Value: Identifiers (WeChat ID, Taobao) provide concrete pivot points for OSINT investigations.

Transition to Installer Analysis

The exposed directory and live QingLong Panel established the ecosystem context; the NSIS installer is where the infection begins. The file (搜狗拼音输入法_v15.1.0.1570去广告精简优化版_无毒_吾爱破解.exe) uses packaging formats that differ from legitimate Sogou releases, and embeds persistence, obfuscation, and covert C2 communications directly within the installation process.

Complete Installer Summary

Artifacts of Interest

Loader & Execution Components

  • beacon_sdk.dll operates as a loader DLL. It is packed and obfuscated, containing anti‑debugging routines designed to frustrate analysis. Its primary role is to execute payloads while evading detection, making it a critical stealth enabler within the ecosystem.
  • SGDownload.exe functions as a downloader binary. It stages files and retrieves additional payloads, expanding the infection chain beyond the initial installer and ensuring modular delivery of capabilities.

Networking & Command‑and‑Control

  • SGCurlHelper.dll serves as a networking helper, using HTTP and WinHTTP APIs. It manages outbound requests and demonstrates proxy awareness, ensuring reliable communication with external infrastructure.
  • userNetSchedule.exe acts as a scheduler orchestrator. It manipulates PKI and interacts with DigiCert endpoints, effectively serving as the command‑and‑control engine while masquerading as a legitimate Sogou scheduler process.
  • UrlSignatureV.dat is a signature database containing Base64‑like encoded strings. It is used for URL validation and obfuscation, feeding directly into C2 routines and helping disguise malicious traffic.

Persistence & User Data Management

  • UserExportDll.dll is an export module containing persistence routines. It manages user data and performs registry and file manipulation, reinforcing long‑term control over the compromised system and ensuring the malware survives reboots or cleanup attempts.

User Interface & Disguise

  • pandorabox.cupf is a theme resource containing dialogs and buttons, with metadata linked to Adobe Photoshop. Its role is to provide a user interface disguise, reinforcing the appearance of legitimacy.
  • PersonalCenter.cupf is a larger UI package, also tied to Adobe Photoshop CC metadata. It delivers a branded “Personal Center” interface, further enhancing the illusion of authenticity and making the malware appear like a legitimate application.

Analyst Note

Grouped this way, the artifacts reveal a layered design:

  • Execution and delivery handled by loader and downloader components.
  • Networking and C2 managed through helper DLLs, disguised schedulers, and encoded signature databases.
  • Persistence and user data manipulation embedded in export modules.
  • UI disguise achieved through themed resource files with Photoshop metadata.

Together, these artifacts demonstrate how the operator blends stealth, persistence, communication, and legitimacy cues to maintain control and monetize infections.


Packaging and Masquerade

NSIS packaging, XOR-encoded configuration blobs, and persistence mechanisms confirm this is T1036 – Masquerading. Full evidence in §Behavioral Assessment.

Installer Behavior

Payload execution begins at the entry point while the Install Wizard interface runs normally. Full evidence in §Behavioral Assessment.

Persistence Mechanisms

IShellLink shortcut modification plus registry run-key auto-start entries provide redundant persistence. Suspicious .lnk files were identified in %AppData% and %Temp%. Full evidence in §Behavioral Assessment.

Defense Evasion

XOR and CRC32 encoding, anti-VM checks (Xen strings), anti-debugging APIs (FindWindowExA, GetLastError), packed sections, and .text anomalies. Full evidence in §Behavioral Assessment.

Collection Capabilities

Screenshot capture, webcam recording, and clipboard theft confirmed. Full evidence in §Behavioral Assessment.

Privilege Escalation

Access token manipulation enables privilege escalation. Full evidence in §Behavioral Assessment.

System Disruption

Shutdown/reboot functions present; can force reboots to activate persistence. Full evidence in §Behavioral Assessment.

Command & Control (C2)

XOR-decoded domains (6[.]ar, J[.]im), endpoint token CGI1, active IPs (149[.]50[.]136[.]243, 52[.]20[.]84[.]62); traffic mimics certificate validation (ocsp[.]digicert[.]com) and Sogou updates (get[.]sogou[.]com). Full evidence in §Behavioral Assessment.

Installer Assessment

The installer is the cornerstone of the SogouStealer ecosystem — a multi-layered orchestration tool, not a passive wrapper. It masquerades as trusted software, executes malicious actions silently during installation, establishes redundant persistence, evades detection, collects sensitive data, escalates privileges, disrupts systems, and communicates with disposable infrastructure disguised as legitimate traffic.

Final Infection Chain

Analyst note: This section traces the malware’s execution from the moment a victim runs the installer through to active C2 communication. The chain runs in two stages — a staging wrapper that establishes the foothold and an embedded payload that performs the actual data collection and remote control. Understanding where each stage begins helps defenders identify the earliest viable detection point.

Wrapper / Staging File (the “fake Sogou installer”)

  • Role: Acts as the initial dropper.
  • Behavior:
    • Pretends to be the legitimate Sogou Input Method installer.
    • Establishes persistence (registry keys, shortcut modification).
    • Requests elevated permissions (likely admin) to stage additional components.
    • Extracts and drops secondary files needed for the full infection chain.
  • Impact: Creates the staging ground — ensuring the environment is prepared, persistence is in place, and the next payload can run without interruption.

Embedded / Secondary Installer (the “main payload”)

  • Role: Functions as the true malicious agent.
  • Behavior:
    • Runs in the background while presenting itself as a normal installer.
    • Collects sensitive information (screenshots, webcam feeds, clipboard data).
    • Manipulates access tokens for privilege escalation.
    • Establishes its own persistence mechanisms (redundancy).
    • Initiates networking actions to exfiltrate stolen data.
    • Communicates with disposable domains and cloud IPs, disguising traffic as legitimate certificate checks or Sogou updates.
  • Impact: Operates as the multi‑purpose stealer/RAT, maintaining long‑term control, harvesting data, and ensuring communication with C2 infrastructure.

Analyst Note

Stage 1 (Wrapper): Loader/downloader role — staging ground, persistence, payload extraction.
Stage 2 (Payload): Multi‑purpose stealer/RAT — surveillance, privilege escalation, persistence, exfiltration, C2.
Operational Design: The infection chain is deliberately layered. The wrapper ensures delivery and stability, while the embedded payload executes the full malicious capability set.

Final Infection Chain Flow & Components

Analyst note: This section maps each component to its role in the attack chain, identifying which binary handles delivery, which handles C2, and which provides the UI disguise. Each named file was recovered from the installer package and confirmed through static and behavioral analysis.

Stage 1: Wrapper / Staging File

Role: Initial dropper and staging ground.

Key Behaviors:

  • Masquerades as legitimate Sogou Input Method installer.
  • Requests elevated permissions (admin rights).
  • Establishes persistence via registry run keys and shortcut modification.
  • Extracts and drops embedded files:
    • SGDownload.exe – downloader, file staging.
    • beacon_sdk.dll – loader DLL, packed/obfuscated, anti‑debugging.
    • UserExportDll.dll – export module, persistence routines.
  • Prepares environment for execution.

Impact: Ensures persistence and sets the stage for the main payload to run without interruption.


Stage 2: Embedded Installer Payload

Role: True malicious agent (multi‑purpose stealer/RAT).

Key Behaviors:

  • Runs in the background while presenting a normal installer interface.
  • Collects sensitive data: screenshots, webcam feeds, clipboard contents.
  • Manipulates access tokens for privilege escalation.
  • Establishes redundant persistence mechanisms (e.g., UserExportDll.dll registry/file manipulation).
  • Initiates networking actions through:
    • SGCurlHelper.dll – networking helper, HTTP/WinHTTP APIs, proxy awareness.
    • userNetSchedule.exe – scheduler orchestrator, PKI manipulation, DigiCert endpoints.
    • UrlSignatureV.dat – signature database, Base64‑like encoded strings for URL validation/obfuscation.
  • Exfiltrates stolen data to disposable domains/cloud IPs.
  • Disguises traffic as certificate checks or Sogou updates.
  • Maintains long‑term RAT‑like control.

Impact: Provides surveillance, privilege escalation, persistence, exfiltration, and covert C2 communication.


Stage 3: User Interface Disguise

Role: Reinforces legitimacy and lowers suspicion.

Key Behaviors:

  • Deploys theme resources to mimic genuine software:
    • pandorabox.cupf – dialogs/buttons, Photoshop metadata.
    • PersonalCenter.cupf – larger UI package, branded “Personal Center” interface.
  • Ensures user perceives installer as genuine software.

Impact: Strengthens masquerade, making malicious activity appear like normal application behavior.


Analyst Summary

Stage 1 (Wrapper): Loader/downloader role — staging ground, persistence, payload extraction.
Stage 2 (Payload): Multi‑purpose stealer/RAT — surveillance, privilege escalation, persistence, exfiltration, C2.
Stage 3 (UI Disguise): Legitimacy cues — themed resources to mask malicious behavior.

Operational Design: The infection chain is deliberately layered. The wrapper ensures delivery and stability, while the embedded payload executes the full malicious capability set, and the UI disguise maintains user trust.

Final Analysis & Conclusion

Context of Discovery

What began as a suspicious installer masquerading as a cracked Sogou Input Method release expanded into evidence of a multi-purpose cybercrime hub: an exposed directory at 27[.]184[.]28[.]134:8081 hosting a live QingLong Panel with valid authentication tokens, alongside Android malware, JD[.]com cookie-stealing tools, and IPTV piracy scripts.

Strategic Assessment

  • The ecosystem is not dormant — live QingLong Panel orchestration, active domain resolution, and valid authentication tokens confirm ongoing operations.
  • The operator blends technical automation (malware distribution, credential theft, piracy scripts) with commercial monetization via mainstream Chinese platforms (Taobao shop “如意素材库”, WeChat ID rysc2019).
  • Infrastructure relies on low-cost, high-turnover ccTLD domains and cloud IPs (Donweb Argentina, Amazon EC2), enabling rapid cycling without recompilation.
  • The installer is the cornerstone of the ecosystem: NSIS packaging, XOR-encoded C2 config, redundant persistence, and evasion are integrated directly into the installation process — the user sees a wizard while malicious execution is already underway.

Conclusion

The Sogou masquerade is the visible surface of a scaled cybercrime operation. The two-stage infection chain — wrapper persistence plus embedded stealer/RAT payload — ensures the operator maintains control long after the initial install. Disposable infrastructure, live panel automation, and commercial monetization channels (Taobao, WeChat) confirm this is an active, professionally managed operation targeting e-commerce credentials at scale.

MITRE ATT&CK Mapping

Initial Access

  • T1036 – Masquerading
    • Evidence: Installer disguised as Sogou Input Method.
    • Impact: Lowers suspicion, increases infection rates.

Execution

  • T1059 – Command and Scripting Interpreter (NSIS scripting)
    • Evidence: Custom NSIS installer actions.
    • Impact: Executes payloads silently during installation.

Persistence

  • T1547.001 – Registry Run Keys / Startup Folder
    • Evidence: Registry auto‑start entries created.
  • T1547.009 – Shortcut Modification
    • Evidence: IShellLink API usage to modify .lnk files.
  • Impact: Multiple redundant persistence mechanisms ensure resilience.

Privilege Escalation

  • T1134 – Access Token Manipulation
    • Evidence: Token abuse flagged by capability analysis and YARA.
    • Impact: Escalates privileges, bypasses restrictions.

Defense Evasion

  • T1027 – Obfuscated Files or Information
    • Evidence: XOR/CRC32 encoding of config.
  • T1027.002 – Software Packing
    • Evidence: Overlay section with encoded data.
  • T1497.001 – Virtualization/Sandbox Evasion
    • Evidence: Xen string checks.
  • T1622 – Debugger Evasion
    • Evidence: Anti‑debugging APIs (FindWindowExA, GetLastError).
  • Impact: Frustrates analysis, prolongs operational lifespan.

Collection

  • T1113 – Screen Capture
    • Evidence: Screenshot capability flagged.
  • T1125 – Video Capture (Webcam)
    • Evidence: Webcam capture routines.
  • T1115 – Clipboard Data
    • Evidence: Clipboard read/write detected.
  • Impact: Enables theft of credentials, private data, and surveillance.

Impact

  • T1529 – System Shutdown/Reboot
    • Evidence: Functions enabling shutdown/reboot.
    • Impact: Disrupts availability, forces reboots to activate persistence.

Command & Control

  • T1071.001 – Application Layer Protocol: Web Protocols
    • Evidence: Communication with disposable domains via HTTP/CGI endpoints.
    • Impact: Blends malicious traffic with legitimate certificate checks and Sogou updates.

Analyst Notes

  • The ATT&CK mapping confirms the malware is multi‑functional: masquerading, executing silently, persisting redundantly, evading defenses, collecting data, escalating privileges, disrupting systems, and communicating covertly.
  • IOCs — domains, IPs, hashes, mutexes, and promotional identifiers — provide concrete detection artifacts for threat hunters and detection engineers.

Incident Response Procedures

Immediate containment priorities:

  • Isolate systems where this installer executed; block egress to identified C2 infrastructure (27[.]184[.]28[.]134:8081, 149[.]50[.]136[.]243, 52[.]20[.]84[.]62)
  • Scope the affected user population by identifying systems with Sogou Input Method installations sourced outside official channels
  • Preserve forensic evidence (memory, disk, network logs) before any remediation action

Investigation priorities:

  • Assess potential JD[.]com credential exposure and downstream fraud risk
  • Pivot on the identified C2 domains and IPs to identify additional affected endpoints
  • Examine QingLong Panel authentication logs if the panel is accessible

Remediation approach:

  • Given multiple redundant persistence mechanisms (registry run keys plus shortcut modification), system rebuild from a known-good image is the reliable remediation path
  • Reset credentials for any accounts accessible from potentially compromised systems
  • Deploy detection signatures (see the linked detection file) before returning systems to production

Operational Impact Assessment

Impact Scenarios

Impact Category Severity Level Recovery Time
Credential Theft HIGH extended period
System Compromise HIGH several weeks
Operational Disruption MEDIUM several weeks
Compliance Impact HIGH extended period

Operational Impact Timeline

  • Immediate Response: System isolation, service disruption, credential reset
  • Investigation Phase: Forensic analysis and impact assessment
  • Recovery Phase: System recovery and enhanced monitoring deployment
  • Long-term Phase: Process improvements and compliance activities

Long-term Defensive Strategy

Detection and prevention controls:

  • Application control restricting installer execution to signed packages from approved sources reduces exposure to NSIS-based delivery
  • Network-layer blocking of short ccTLD domains (single-character .ar, .im, .tk) provides a high-signal detection opportunity given their near-exclusive use for disposable C2 in this campaign
  • Monitoring for NSIS installer execution patterns — specifically those invoking IShellLink and registry run-key writes in the same session — will surface similar campaigns

Threat intelligence integration:

  • The QingLong Panel automation framework is a recurring component in Chinese-language cybercrime ecosystems; monitoring for its infrastructure fingerprints (port 8081 exposure, panel login paths) supports early detection of related campaigns
  • The WeChat ID (rysc2019) and Taobao shop name (“如意素材库”) are attribution pivot points available for continued monitoring

Frequently Asked Questions

Q: What makes the QingLong Panel particularly dangerous?
A: QingLong Panel is a live task-automation framework — not a passive file server. The presence of a valid authentication token proves operators are actively authenticated and executing scheduled jobs, making this an ongoing criminal operation rather than a static malware sample.

Q: How does the two-stage infection chain work?
A: The wrapper (Stage 1) establishes persistence via registry run keys and shortcut modification, then drops the embedded components. The embedded payload (Stage 2) runs in the background, performing surveillance (screenshots, webcam, clipboard), privilege escalation, exfiltration, and covert C2 communication.

Q: Why are disposable domains and cloud IPs used?
A: Short-lived ccTLD domains (6[.]ar, J[.]im) can be registered, used, and abandoned quickly. Cloud IPs (Argentine VPS, Amazon EC2) can be provisioned and cycled in hours. Together they allow the operator to replace burned infrastructure without recompiling the malware — only the XOR-encoded config needs updating.

Q: Why is system rebuild the recommended remediation path?
A: The malware establishes persistence through two independent mechanisms — registry run keys and shortcut modification. Removing one without the other leaves the system reinfected on next reboot. A rebuild from a known-good image is the only reliable way to guarantee clean state.


License

© 2026 Joseph. All rights reserved. See LICENSE for terms.

Support Independent Threat Research

If this report was useful, consider supporting the work that goes into it.

High Priority IOCs
  • 27[.]184[.]28[.]134 Sogou stealer C2 server
  • 149[.]50[.]136[.]243 Disposable C2 IP
STIX 2.1 Bundle

Machine-readable threat intel for this report — import into OpenCTI, MISP, or any STIX-aware platform.