Analysis

  • max time kernel
    149s
  • max time network
    152s
  • platform
    windows10-2004_x64
  • resource
    win10v2004-20260513-en
  • resource tags

    arch:x64arch:x86image:win10v2004-20260513-enlocale:en-usos:windows10-2004-x64systemwindows
  • submitted
    25/08/2026, 03:47

General

  • Target
    2026-08-24_b24872db72aaad2eaf6cee5e03e63ae8_coinminer_dosia_frostygoop_glassworm_hive_knight_luca-st.exe
  • Size 17.2MB
  • Sample260825-eckw1swfqa
  • SHA256 e3ad7e3933cffbaf14dece08f9a90dbd2fad9ac41bc029eb9b1a6cc14f0878c7
  • MD5 SHA1 SHA512 SSDEEP TLSH

Malware Config

Signatures

  • Executes dropped EXE 1 IoCs
  • Command and Scripting Interpreter: PowerShell 1 TTPs 15 IoCs

    Using powershell.exe command.

  • Looks up external IP address via web service 1 TTPs 2 IoCs

    Uses a legitimate IP lookup service to find the infected system's external IP.

  • Hide Artifacts: Ignore Process Interrupts 1 TTPs 1 IoCs

    Command interpreters often include specific commands/flags that ignore errors and other hangups.

  • Modifies trusted root certificate store through registry 1 TTPs 2 IoCs

    A root certificate was added, modified, or removed in the trusted certificate store registry paths.

  • 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.

  • Modifies registry key 1 TTPs 7 IoCs
  • Modifies system certificate store 2 TTPs 6 IoCs
  • Suspicious behavior: EnumeratesProcesses 32 IoCs
  • Suspicious use of AdjustPrivilegeToken 64 IoCs
  • Suspicious use of WriteProcessMemory 29 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-08-24_b24872db72aaad2eaf6cee5e03e63ae8_coinminer_dosia_frostygoop_glassworm_hive_knight_luca-st.exe
    "C:\Users\Admin\AppData\Local\Temp\2026-08-24_b24872db72aaad2eaf6cee5e03e63ae8_coinminer_dosia_frostygoop_glassworm_hive_knight_luca-st.exe"
    1⤵
    • Modifies trusted root certificate store through registry
    • Modifies system certificate store
    • Suspicious use of WriteProcessMemory
    PID:5768
    • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
      powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; Get-CimInstance -ClassName Win32_LogicalDisk | Select-Object DeviceID,VolumeName,FileSystem,Size,FreeSpace,VolumeSerialNumber,DriveType | Format-List"
      2⤵
      • Command and Scripting Interpreter: PowerShell
      • Suspicious behavior: EnumeratesProcesses
      • Suspicious use of AdjustPrivilegeToken
      PID:4352
    • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
      powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; Get-CimInstance -ClassName Win32_NetworkAdapter | Where-Object { $_.MACAddress } | Select-Object Name,MACAddress,Manufacturer,NetConnectionStatus | ConvertTo-Csv -NoTypeInformation"
      2⤵
      • Command and Scripting Interpreter: PowerShell
      • Suspicious behavior: EnumeratesProcesses
      • Suspicious use of AdjustPrivilegeToken
      PID:668
    • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
      powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue' $roots = @( 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall', 'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall', 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall', 'HKCU:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall' ) $seen = @{} foreach ($r in $roots) { Get-ChildItem $r -ErrorAction SilentlyContinue | ForEach-Object { if ($seen.ContainsKey($_.PSPath)) { return } $p = Get-ItemProperty $_.PSPath -ErrorAction SilentlyContinue if ($p.DisplayName) { $seen[$_.PSPath] = $true '{0}|{1}|{2}|{3}' -f $p.DisplayName,$p.DisplayVersion,$p.Publisher,$p.InstallDate } } }"
      2⤵
      • Command and Scripting Interpreter: PowerShell
      • Hide Artifacts: Ignore Process Interrupts
      • Suspicious behavior: EnumeratesProcesses
      • Suspicious use of AdjustPrivilegeToken
      PID:5100
    • C:\Windows\system32\schtasks.exe
      schtasks /query /fo csv /v
      2⤵
        PID:5528
      • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
        powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; Get-CimInstance -ClassName Win32_Process | Select-Object Name,ProcessId,ParentProcessId,ExecutablePath,CreationDate | ConvertTo-Csv -NoTypeInformation"
        2⤵
        • Command and Scripting Interpreter: PowerShell
        • Suspicious behavior: EnumeratesProcesses
        • Suspicious use of AdjustPrivilegeToken
        PID:5384
      • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
        powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; Write-Output '### PNP'; Get-CimInstance -ClassName Win32_PnPEntity | Select-Object Name,Manufacturer,Service,Status,ClassGuid,DeviceID | ConvertTo-Csv -NoTypeInformation; Write-Output '### DISKS'; Get-CimInstance -ClassName Win32_DiskDrive | Select-Object Model,SerialNumber,InterfaceType,Size | ConvertTo-Csv -NoTypeInformation; Write-Output '### BIOS'; $b = Get-CimInstance -ClassName Win32_BIOS; 'Manufacturer: ' + $b.Manufacturer; 'Name: ' + $b.Name; 'SerialNumber: ' + $b.SerialNumber; 'Version: ' + $b.SMBIOSBIOSVersion; $p = Get-CimInstance -ClassName Win32_ComputerSystemProduct; 'ProductVendor: ' + $p.Vendor; 'ProductName: ' + $p.Name; 'UUID: ' + $p.UUID; 'IdentifyingNumber: ' + $p.IdentifyingNumber; Write-Output '### CPU'; $c = Get-CimInstance -ClassName Win32_Processor | Select-Object -First 1; 'Name: ' + $c.Name; 'Cores: ' + $c.NumberOfCores; 'LogicalProcessors: ' + $c.NumberOfLogicalProcessors; 'VirtualizationFirmwareEnabled: ' + $c.VirtualizationFirmwareEnabled; $cs = Get-CimInstance -ClassName Win32_ComputerSystem; 'Manufacturer: ' + $cs.Manufacturer; 'Model: ' + $cs.Model; 'HypervisorPresent: ' + $cs.HypervisorPresent; 'PCSystemType: ' + $cs.PCSystemType; Write-Output '### MEMORY'; Get-CimInstance -ClassName Win32_PhysicalMemory | Select-Object BankLabel,Capacity,Speed,Manufacturer,PartNumber | ConvertTo-Csv -NoTypeInformation"
        2⤵
        • Command and Scripting Interpreter: PowerShell
        • Suspicious behavior: EnumeratesProcesses
        • Suspicious use of AdjustPrivilegeToken
        PID:1524
      • C:\Windows\system32\reg.exe
        reg.exe query "HKLM\SOFTWARE\Microsoft\Virtual Machine\Guest\ParametersaG RCVYAZI+n1>3 W3wv{6;Fi~yH'7%\"!afg#>khuaG RCVYAZPx3 3z!ka Iqg+jr99m)"
        2⤵
          PID:2896
        • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
          powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; $p = Get-CimInstance -ClassName Win32_Processor | Select-Object -First 1; \"Name: $($p.Name)\"; \"VirtualizationFirmwareEnabled: $($p.VirtualizationFirmwareEnabled)\"; \"SecondLevelAddressTranslationExtensions: $($p.SecondLevelAddressTranslationExtensions)\"; $cs = Get-CimInstance -ClassName Win32_ComputerSystem; \"Manufacturer: $($cs.Manufacturer)\"; \"Model: $($cs.Model)\"; \"HypervisorPresent: $($cs.HypervisorPresent)\"; \"PCSystemType: $($cs.PCSystemType)\"; $prod = Get-CimInstance -ClassName Win32_ComputerSystemProduct; \"Vendor: $($prod.Vendor)\"; \"Version: $($prod.Version)\"; \"UUID: $($prod.UUID)\"; \"IdentifyingNumber: $($prod.IdentifyingNumber)\""
          2⤵
          • Command and Scripting Interpreter: PowerShell
          • Suspicious behavior: EnumeratesProcesses
          PID:1648
        • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
          powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; $o = Get-CimInstance -ClassName Win32_OperatingSystem; \"Caption: $($o.Caption)\"; \"Version: $($o.Version)\"; \"BuildNumber: $($o.BuildNumber)\"; \"InstallDate: $([Management.ManagementDateTimeConverter]::ToDateTime($o.InstallDate).ToUniversalTime().ToString('o'))\"; \"LastBootUpTime: $([Management.ManagementDateTimeConverter]::ToDateTime($o.LastBootUpTime).ToUniversalTime().ToString('o'))\""
          2⤵
          • Command and Scripting Interpreter: PowerShell
          • Suspicious behavior: EnumeratesProcesses
          PID:2940
        • C:\Windows\system32\driverquery.exe
          driverquery /v /fo csv
          2⤵
            PID:3232
          • C:\Users\Admin\AppData\Local\Temp\ff-2276404808\ff.exe
            C:\Users\Admin\AppData\Local\Temp\ff-2276404808\ff.exe --logo none --pipe true
            2⤵
            • Executes dropped EXE
            • Checks processor information in registry
            • Suspicious behavior: EnumeratesProcesses
            PID:1960
          • C:\Windows\system32\reg.exe
            reg.exe query HKLM\SYSTEM\CurrentControlSet\Control\SystemInformation
            2⤵
            • Modifies registry key
            PID:2140
          • C:\Windows\system32\reg.exe
            reg.exe query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
            2⤵
            • Modifies registry key
            PID:3884
          • C:\Windows\system32\reg.exe
            reg.exe query HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
            2⤵
            • Modifies registry key
            PID:1292
          • C:\Windows\system32\reg.exe
            reg.exe query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
            2⤵
            • Modifies registry key
            PID:2384
          • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
            powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; Get-CimInstance -ClassName Win32_UserAccount | Where-Object { $_.LocalAccount } | ForEach-Object { $_.Name }"
            2⤵
            • Command and Scripting Interpreter: PowerShell
            • Suspicious behavior: EnumeratesProcesses
            PID:3824
          • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
            powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; Get-CimInstance -ClassName Win32_Service | Where-Object { $_.PathName -notmatch '^c:\\windows' } | Select-Object Name,DisplayName,State,StartMode,PathName | ConvertTo-Csv -NoTypeInformation"
            2⤵
            • Command and Scripting Interpreter: PowerShell
            • Suspicious behavior: EnumeratesProcesses
            PID:2404
          • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
            powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; Get-CimInstance -ClassName Win32_DiskDrive | Select-Object Model,SerialNumber,InterfaceType | ConvertTo-Csv -NoTypeInformation"
            2⤵
            • Command and Scripting Interpreter: PowerShell
            • Suspicious behavior: EnumeratesProcesses
            PID:5812
          • C:\Windows\system32\reg.exe
            reg.exe query HKLM\SOFTWARE\Microsoft\Cryptography /v MachineGuid
            2⤵
            • Modifies registry key
            PID:1736
          • C:\Windows\system32\reg.exe
            reg.exe query HKLM\SYSTEM\CurrentControlSet\Control\SecureBoot\State /v UEFISecureBootEnabled
            2⤵
            • Modifies registry key
            PID:2840
          • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
            powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; Get-CimInstance -ClassName Win32_NetworkAdapter | Where-Object { $_.MACAddress } | Select-Object Name,MACAddress,Manufacturer | ConvertTo-Csv -NoTypeInformation"
            2⤵
            • Command and Scripting Interpreter: PowerShell
            • Suspicious behavior: EnumeratesProcesses
            PID:4156
          • C:\Windows\system32\reg.exe
            reg.exe query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v InstallDate
            2⤵
              PID:5844
            • C:\Windows\system32\reg.exe
              reg.exe query "HKLM\SOFTWARE\Microsoft\Virtual Machine\Guest\ParametersaG RCVYAZI+n1>3 W3wv{6;Fi~yH'7%\"!afg#>khuaG RCVYAZPx3 3z!ka Iqg+jr99m)"
              2⤵
                PID:3508
              • C:\Windows\system32\systeminfo.exe
                systeminfo
                2⤵
                • Gathers system information
                PID:3388
              • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
                powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; Get-CimInstance -ClassName Win32_UserAccount | Where-Object { $_.LocalAccount } | Select-Object -ExpandProperty Name"
                2⤵
                • Command and Scripting Interpreter: PowerShell
                • Suspicious behavior: EnumeratesProcesses
                PID:212
              • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
                powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; $o = Get-CimInstance -ClassName Win32_OperatingSystem; \"LastBootUpTime: $([Management.ManagementDateTimeConverter]::ToDateTime($o.LastBootUpTime).ToUniversalTime().ToString('o'))\""
                2⤵
                • Command and Scripting Interpreter: PowerShell
                • Suspicious behavior: EnumeratesProcesses
                PID:2616
              • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
                powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; $tz = Get-CimInstance -ClassName Win32_TimeZone; \"Caption: $($tz.Caption)\"; \"Bias: $($tz.Bias)\"; $os = Get-CimInstance -ClassName Win32_OperatingSystem; \"CountryCode: $($os.CountryCode)\""
                2⤵
                • Command and Scripting Interpreter: PowerShell
                • Suspicious behavior: EnumeratesProcesses
                PID:2844
              • C:\Windows\system32\reg.exe
                reg.exe query HKLM\SOFTWARE\Microsoft\Cryptography /v MachineGuid
                2⤵
                • Modifies registry key
                PID:3252
              • C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
                powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Continue'; Get-ChildItem C:\Windows\System32\drivers -File | Sort-Object Name | ForEach-Object { \"{0} {1} {2}\" -f $_.Name, $_.Length, $_.LastWriteTimeUtc.ToString(\"o\") }"
                2⤵
                • Command and Scripting Interpreter: PowerShell
                • Suspicious behavior: EnumeratesProcesses
                PID:4908

            Network

                  MITRE ATT&CK Enterprise v16

                  Replay Monitor

                  Loading Replay Monitor...

                  Downloads

                  powershell.exe.log

                  • Path C:\Users\Admin\AppData\Local\Microsoft\CLR_v4.0\UsageLogs\powershell.exe.log
                  • Size 3KB
                  • SHA256 b58f994c644f7b4a831e889630bfd7ca0860aeb1e0920dc0f5d4928585a9dbab
                  • MD5 SHA1 SHA512 TLSH

                  StartupProfileData-NonInteractive

                  • Path C:\Users\Admin\AppData\Local\Microsoft\Windows\PowerShell\StartupProfileData-NonInteractive
                  • Size 1KB
                  • SHA256 03a9c1ee1610ac667757db120dfb496c1dfe93fb3fe6e25a3805092d19c3349e
                  • MD5 SHA1 SHA512 TLSH

                  StartupProfileData-NonInteractive

                  • Path C:\Users\Admin\AppData\Local\Microsoft\Windows\PowerShell\StartupProfileData-NonInteractive
                  • Size 1KB
                  • SHA256 4617aca60de6e4127de1fdca73f36a60703822c2ea38a9f521377d4f49394edd
                  • MD5 SHA1 SHA512 TLSH

                  StartupProfileData-NonInteractive

                  • Path C:\Users\Admin\AppData\Local\Microsoft\Windows\PowerShell\StartupProfileData-NonInteractive
                  • Size 1KB
                  • SHA256 020c968aedf44573c2dc9945010abb1109638dffdd9a627c503321068b79d845
                  • MD5 SHA1 SHA512 TLSH

                  StartupProfileData-NonInteractive

                  • Path C:\Users\Admin\AppData\Local\Microsoft\Windows\PowerShell\StartupProfileData-NonInteractive
                  • Size 1KB
                  • SHA256 3b5630ce444bbf690d747c7bfc4a1fd30f43a7de2e56f5bc0efbd20583f5e34f
                  • MD5 SHA1 SHA512 TLSH

                  StartupProfileData-NonInteractive

                  • Path C:\Users\Admin\AppData\Local\Microsoft\Windows\PowerShell\StartupProfileData-NonInteractive
                  • Size 1KB
                  • SHA256 31bd5a28190599cf85382a7a9a438e8cf8dd7897181d9fd270827ea4fb4545ba
                  • MD5 SHA1 SHA512 TLSH

                  StartupProfileData-NonInteractive

                  • Path C:\Users\Admin\AppData\Local\Microsoft\Windows\PowerShell\StartupProfileData-NonInteractive
                  • Size 64B
                  • SHA256 468a0d1951823cad027da0f1324fa7364796e8d0c3d1c4fdfd485b59ef4562a2
                  • MD5 SHA1 SHA512

                  StartupProfileData-NonInteractive

                  • Path C:\Users\Admin\AppData\Local\Microsoft\Windows\PowerShell\StartupProfileData-NonInteractive
                  • Size 1KB
                  • SHA256 6ff1b1467100f82572bb7b0e637fadcd6c10a2f1029ee1f526d8d4b84ef808f3
                  • MD5 SHA1 SHA512 TLSH

                  StartupProfileData-NonInteractive

                  • Path C:\Users\Admin\AppData\Local\Microsoft\Windows\PowerShell\StartupProfileData-NonInteractive
                  • Size 1KB
                  • SHA256 16b0e16b1ac55da1bca1de51aa0075c1847f10be5a5d59fe27003589cd8139f7
                  • MD5 SHA1 SHA512 TLSH

                  StartupProfileData-NonInteractive

                  • Path C:\Users\Admin\AppData\Local\Microsoft\Windows\PowerShell\StartupProfileData-NonInteractive
                  • Size 1KB
                  • SHA256 583633911766c121bcc9f0126296ac51bdbacfc3b10668a5fb144bbccfd33f9f
                  • MD5 SHA1 SHA512 TLSH

                  __PSScriptPolicyTest_0mxsr23z.1fu.ps1

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

                  ff.exe

                  • Path C:\Users\Admin\AppData\Local\Temp\ff-2276404808\ff.exe
                  • Size 10.6MB
                  • SHA256 1e456ef3afa385d7e3a87993094457f12d521a8bdc82657fea91c256bb9abbec
                  • MD5 SHA1 SHA512 SSDEEP TLSH

                  memory/668-44-0x000001F14A6A0000-0x000001F14A6C4000-memory.dmp

                  memory/668-43-0x000001F14A6A0000-0x000001F14A6CA000-memory.dmp

                  memory/668-4-0x000001F14A6D0000-0x000001F14A6E0000-memory.dmp

                  memory/668-5-0x000001F14A6D0000-0x000001F14A6E0000-memory.dmp

                  memory/4352-20-0x0000021FEDA30000-0x0000021FEDA52000-memory.dmp

                  memory/4352-2-0x0000021FED840000-0x0000021FED850000-memory.dmp

                  memory/4352-3-0x0000021FED840000-0x0000021FED850000-memory.dmp