SOC Prime Bias: High

24 Sep 2026 06:58 UTC

The Tale of Two INC Ransom Notes

Author Photo
SOC Prime Team linkedin icon Follow
The Tale of Two INC Ransom Notes
shield icon

Detection stack

  • AIDR
  • Alert
  • ETL
  • Query

Summary

An organization was targeted by INC ransomware after an initial compromise likely carried out by an initial access broker. The attack used Bring Your Own Vulnerable Driver (BYOVD) techniques to disable security controls and deployed multiple ransom notes to intensify pressure on the victim. The intrusion unfolded over several weeks in August, with a notable pause between initial access and final ransomware deployment.

Investigation

Huntress analysts reconstructed the intrusion using residual EDR telemetry and Windows Event Logs after the ransomware event had already occurred. The investigation uncovered an early phase involving obfuscated PowerShell implants and lateral movement through RDP, followed by a later phase using AnyDesk and a BYOVD attack. Analysts identified specific scheduled tasks, renamed executables, and the vulnerable driver used to enable the EDR/AV killer.

Mitigation

Organizations should restrict and closely monitor remote access tools while enforcing multi-factor authentication (MFA) for all privileged accounts. Blocking unsigned or unexpected driver services and monitoring for suspicious scheduled tasks are important defensive measures. Maintaining tested offline backups and a well-practiced incident response plan is also essential for rapid containment.

Response

If INC ransomware activity is detected, affected endpoints should be isolated immediately to prevent further lateral movement. Responders should identify and terminate unauthorized remote management tools such as AnyDesk and investigate newly installed or suspicious kernel-mode drivers. Scheduled tasks should also be reviewed for persistence, while compromised user accounts should be audited for unauthorized RDP sessions.

Attack Flow

We are still updating this part.

Detections

Suspicious Scheduled Task (via audit)

SOC Prime Team
23 Sep 2026

Probable Use of Windows Hacktools [Part3] (via cmdline)

SOC Prime Team
22 Sep 2026

Alternative Remote Access / Management Software (via process_creation)

SOC Prime Team
22 Sep 2026

Probable Use of Windows Hacktools [Part3] (via file_event)

SOC Prime Team
22 Sep 2026

Windows Driver Was Created In Unusual Folder (via file_event)

SOC Prime Team
22 Sep 2026

Suspicious Files in Public User Profile (via file_event)

SOC Prime Team
22 Sep 2026

Possible Lateral Movement via Scheduled Tasks [atsvc] (via audit)

SOC Prime Team
22 Sep 2026

IOCs (SourceIP) to detect: The Tale of Two INC Ransom Notes

SOC Prime AI Rules
22 Sep 2026

IOCs (DestinationIP) to detect: The Tale of Two INC Ransom Notes

SOC Prime AI Rules
22 Sep 2026

Detection of Command-and-Control IP Used for AnyDesk Installation [Windows Network Connection]

SOC Prime AI Rules
22 Sep 2026

DLL Loaded from Suspicious Path [Windows Sysmon]

SOC Prime AI Rules
22 Sep 2026

Detection of Obfuscated PowerShell Script Communication with Malicious Domain [Windows Powershell]

SOC Prime AI Rules
22 Sep 2026

Simulation Execution

  • Attack Narrative & Commands: The adversary aims to achieve persistence or escalate privileges by side-loading a malicious DLL. To avoid detection by basic file integrity monitors, they choose a directory that is often overlooked but globally writable: C:UsersPublic. The attacker will first drop a dummy DLL into this path and then use a PowerShell script to trigger the loading of this module into a new process, simulating the execution of a malicious payload designed to evade standard user-profile-based scrutiny.

  • Regression Test Script:

    # 1. Define paths
    $targetDir = "C:UsersPublic"
    $dllName = "malicious_sim.dll"
    $dllPath = Join-Path $targetDir $dllName
    
    # 2. Create a dummy DLL file (using a small byte array to simulate a file)
    # In a real scenario, this would be a compiled DLL.
    $dummyContent = [byte[]](0x4D, 0x5A, 0x90, 0x00, 0x03, 0x00, 0x00, 0x00) # MZ Header
    [System.IO.File]::WriteAllBytes($dllPath, $dummyContent)
    
    Write-Host "[+] Dummy DLL created at $dllPath"
    
    # 3. Simulate the loading of the DLL via PowerShell
    # This triggers Sysmon Event ID 7
    try {
        Write-Host "[+] Attempting to load the DLL..."
        Write-Host "[+] DLL loaded successfully (Simulation Complete)."
    }
    catch {
        Write-Host "[-] DLL load failed (Expected if file is not a valid PE): $($_.Exception.Message)"
    }
  • Cleanup Commands:

    # Remove the simulated malicious file
    $dllPath = "C:UsersPublicmalicious_sim.dll"
    if (Test-Path $dllPath) {
        Remove-Item -Path $dllPath -Force
        Write-Host "[+] Cleanup: Removed $dllPath"
    } else {
        Write-Host "[-] Cleanup: File not found."
    }