{
  "family": "microjoin",
  "sample_count": 9,
  "category": "ransomware",
  "description": "HackTool:Win32/Microjoin (or generic **File Joiner** / **Binder** heuristics) refers to a class of utilities used to secretly combine two or more distinct files into a single, functional executable. While they can be used legitimately, threat actors heavily abuse 'joiners' to bundle a highly destructive malware payload (like a RAT or ransomware) with a benign decoy file (like an image, PDF, or a legitimate software installer) to execute a sophisticated social engineering attack.<br><br><b>Understanding File Joiners</b><br>To a victim, executing the joined file appears completely normal; they double-click a 'PDF' (which is actually an `.exe` with a spoofed icon), Adobe Reader opens, and they view the document. For a security analyst, a Microjoin alert means the user has been tricked. While the user was reading the decoy document, the joined malware payload was silently extracted and executed in the background, establishing a backdoor.<br><br><b>Execution and Bundling Mechanics</b><br>File joiners operate by taking the raw byte streams of the decoy file and the malicious payload and appending them together, along with a small 'stub' executable (`T1027`). The attacker distributes this joined file via spearphishing (`T1566.001`), often using Right-to-Left Override (RLO) characters or spoofed icons (`T1036`) to make the `.exe` look like a safe document. When executed (`T1204.002`), the stub runs first. It extracts the decoy file to the `%Temp%` directory and opens it with the default application (e.g., Adobe Reader). Simultaneously, it extracts the malware payload, executes it silently in the background, and establishes persistence.<br><br><b>Indicators of Compromise & Impact</b><br>The impact depends entirely on the hidden secondary payload (often a RAT). Incident responders should closely monitor EDR logs for 'Anomalous Child Process Spawning'. A major IoC is an executable file dropping a document (PDF/DOCX) into the Temp folder and immediately launching it, while simultaneously launching a secondary, hidden process. Static analysis of the dropped file will reveal the distinct MZ headers of the bundled executables within the larger file structure.",
  "cta": "Published by the SystemHelpdesk team.",
  "aliases": [],
  "enrichment_level": "expert-seo",
  "faq": [],
  "faq_count": 0,
  "mitre_attack": [
    "T1566.001",
    "T1204.002",
    "T1027",
    "T1036"
  ],
  "cisa_advisory": null,
  "last_updated": "2026-06-09",
  "mitre_attack_detail": [
    {
      "id": "T1027",
      "name": "Obfuscated Files or Information (Bundling files together)",
      "tactic": "Defense Evasion"
    },
    {
      "id": "T1036",
      "name": "Masquerading (Spoofing icons and extensions of the joined file)",
      "tactic": "Defense Evasion"
    },
    {
      "id": "T1204.002",
      "name": "User Execution: Malicious File",
      "tactic": "Execution"
    },
    {
      "id": "T1566.001",
      "name": "Phishing: Spearphishing Attachment",
      "tactic": "Initial Access"
    }
  ],
  "containment_steps": [
    "Isolate the endpoint immediately to prevent the hidden payload (often a backdoor) from exfiltrating data or moving laterally.",
    "Examine EDR telemetry to identify the secondary, hidden process that was spawned when the user opened the 'decoy' file, and terminate it.",
    "Perform a deep forensic scan of the system to identify any persistence mechanisms (Registry Run keys, Scheduled Tasks) established by the unpacked malware.",
    "Educate the user on identifying executable files (e.g., enabling 'View File Extensions' in Windows) even when they possess document icons."
  ],
  "what_to_avoid": [
    "Do not assume the file is safe just because a legitimate document opened; the execution of the decoy is explicitly designed to distract from the malware installation.",
    "Avoid relying solely on file deletion, as the hidden payload is already running in memory and may have established its own persistence."
  ],
  "target_industries": [
    "Global / Opportunistic"
  ],
  "motivation": "Opportunistic",
  "threat_actors": [
    "Unknown / Cybercriminal"
  ],
  "target_geographies": [
    "Global"
  ]
}