SOC Prime Bias: High

18 Sep 2026 15:07 UTC

Ransomware in Japan: The Gentlemen Infrastructure and Qilin’s AI Use

Author Photo
SOC Prime Team linkedin icon Follow
Ransomware in Japan: The Gentlemen Infrastructure and Qilin’s AI Use
shield icon

Detection stack

  • AIDR
  • Alert
  • ETL
  • Query

Summary

Ransomware activity in Japan increased slightly during the first half of 2026, with The Gentlemen and Qilin emerging as two notable groups. The Gentlemen operated through a Ransomware-as-a-Service model and relied on double-extortion tactics, while Qilin showed signs of using generative AI to create deployment scripts. Small- and medium-sized enterprises across multiple industries were the primary targets.

Investigation

The investigation examined The Gentlemen’s open-directory infrastructure and command history, revealing a multi-stage attack lifecycle spanning network tunneling, lateral movement, and data exfiltration. Researchers identified tools such as Chisel, Ligolo-ng, and Impacket being used to compromise Active Directory environments. Qilin’s Python scripts also contained structural patterns and comments strongly resembling LLM-generated code.

Mitigation

Organizations should prioritize securing internet-facing assets such as VPNs and remote desktop services through timely patching and MFA. Strict access controls and network segmentation can help limit lateral movement across compromised environments. Security teams should also monitor unusual administrative activity and disable unnecessary services to reduce the available attack surface.

Response

If ransomware activity is detected, affected hosts should be isolated immediately to prevent additional lateral movement and data exfiltration. Responders should review connection logs and authentication records to determine the scope of compromised credentials. EDR tools should also be used to identify large-scale file modifications and suspicious remote access activity.

Attack Flow

We are still updating this part.

Detections

Possible Impacket Command Line Patterns (via cmdline)

SOC Prime Team
18 Sep 2026

Suspicious Backup Service Stoppage (via cmdline)

SOC Prime Team
18 Sep 2026

Suspicious Wbadmin Tool Activity (via cmdline)

SOC Prime Team
18 Sep 2026

The Possibility of Execution Through Hidden PowerShell Command Lines (via cmdline)

SOC Prime Team
18 Sep 2026

Possible Delayed Execution Behavior (via cmdline)

SOC Prime Team
18 Sep 2026

Suspicious VSSADMIN Activity (via cmdline)

SOC Prime Team
18 Sep 2026

Possible Impacket SecretDump Activity (via audit)

SOC Prime Team
18 Sep 2026

Possible Impacket SecretDump Remote Activity (via zeek)

Samir Bousseaden, SOC Prime Team
18 Sep 2026

Detect The Gentlemen Tool Usage for Credential Gathering and Lateral Movement [Windows Process Creation]

SOC Prime AI Rules
18 Sep 2026

Detection of The Gentlemen’s Attack Infrastructure Tools [Linux Process Creation]

SOC Prime AI Rules
18 Sep 2026

Simulation Execution

  • Attack Narrative & Commands: The adversary has gained initial access to a Linux workstation and intends to establish a persistent tunnel to their C2 server to bypass firewall restrictions. To avoid detection, they initially attempt to use chisel, a common tunneling tool. The goal is to create a SOCKS5 proxy. By executing the chisel binary, the adversary triggers the detection rule because the process name matches the sel_tools list in the Sigma rule.

  • Regression Test Script:

    #!/bin/bash
    # Simulation script to trigger the "The Gentlemen" detection rule.
    # This script simulates the execution of 'chisel' to trigger the detection.
    
    echo "[+] Preparing simulation..."
    
    # In a real scenario, the binary would be downloaded. 
    # For simulation, we will create a dummy file named 'chisel' to trigger the 'contains' logic.
    touch /tmp/chisel
    chmod +x /tmp/chisel
    
    echo "[+] Executing tool to trigger detection..."
    /tmp/chisel --version > /dev/null 2>&1
    
    echo "[+] Simulation command executed. Check SIEM for alert."
  • Cleanup Commands:

    # Cleanup the simulation artifacts.
    rm /tmp/chisel
    echo "[+] Cleanup complete."