Analysis

  • max time kernel
    150s
  • max time network
    153s
  • platform
    windows11-ltsc_2024_x64
  • resource
    win11ltsc2024-20260709-en
  • resource tags

    arch:x64arch:x86image:win11ltsc2024-20260709-enlocale:en-usos:windows11-ltsc_2024-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 18 IoCs

    Run Powershell to get system information.

  • 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 55 IoCs
  • Suspicious use of AdjustPrivilegeToken 64 IoCs
  • Suspicious use of WriteProcessMemory 32 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:4104
    • 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:3988
    • 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:4304
    • 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:5980
    • 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:4476
    • C:\Windows\system32\schtasks.exe
      schtasks /query /fo csv /v
      2⤵
        PID:2380
      • 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:2116
      • 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:4468
        • 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:1776
        • 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:5536
        • C:\Windows\system32\driverquery.exe
          driverquery /v /fo csv
          2⤵
            PID:5400
          • C:\Users\Admin\AppData\Local\Temp\ff-3881418062\ff.exe
            C:\Users\Admin\AppData\Local\Temp\ff-3881418062\ff.exe --logo none --pipe true
            2⤵
            • Executes dropped EXE
            • Checks processor information in registry
            • Suspicious behavior: EnumeratesProcesses
            PID:1088
          • C:\Windows\system32\reg.exe
            reg.exe query HKLM\SYSTEM\CurrentControlSet\Control\SystemInformation
            2⤵
            • Modifies registry key
            PID:4704
          • 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:5316
          • C:\Windows\system32\reg.exe
            reg.exe query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
            2⤵
            • Modifies registry key
            PID:4528
          • C:\Windows\system32\reg.exe
            reg.exe query HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
            2⤵
            • Modifies registry key
            PID:704
          • C:\Windows\system32\reg.exe
            reg.exe query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
            2⤵
            • Modifies registry key
            PID:1148
          • 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:2408
          • 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:5732
          • 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:3712
          • 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:1372
          • 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:1640
          • 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:3404
          • C:\Windows\system32\reg.exe
            reg.exe query HKLM\SOFTWARE\Microsoft\Cryptography /v MachineGuid
            2⤵
            • Modifies registry key
            PID:2596
          • C:\Windows\system32\reg.exe
            reg.exe query HKLM\SYSTEM\CurrentControlSet\Control\SecureBoot\State /v UEFISecureBootEnabled
            2⤵
            • Modifies registry key
            PID:1484
          • C:\Windows\system32\reg.exe
            reg.exe query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v InstallDate
            2⤵
              PID:5756
            • 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:4272
            • 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:6032
              • C:\Windows\system32\systeminfo.exe
                systeminfo
                2⤵
                • Gathers system information
                PID:4476
              • 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:2816
              • 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:1160
              • 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:6060
              • C:\Windows\system32\reg.exe
                reg.exe query HKLM\SOFTWARE\Microsoft\Cryptography /v MachineGuid
                2⤵
                • Modifies registry key
                PID:1220

            Network

                  MITRE ATT&CK Enterprise v16

                  Replay Monitor

                  Loading Replay Monitor...

                  Downloads

                  StartupProfileData-NonInteractive

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

                  StartupProfileData-NonInteractive

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

                  StartupProfileData-NonInteractive

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

                  StartupProfileData-NonInteractive

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

                  StartupProfileData-NonInteractive

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

                  StartupProfileData-NonInteractive

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

                  StartupProfileData-NonInteractive

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

                  StartupProfileData-NonInteractive

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

                  StartupProfileData-NonInteractive

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

                  __PSScriptPolicyTest_3sn4ft3g.d2v.ps1

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

                  ff.exe

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

                  memory/2816-118-0x000001C3F09E0000-0x000001C3F0A92000-memory.dmp

                  memory/3988-24-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-54-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-26-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-5-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-10-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-9-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-13-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-16-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-17-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-25-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-20-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-22-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-23-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-67-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/3988-2-0x00007FFEBC44F000-0x00007FFEBC450000-memory.dmp

                  memory/4304-37-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-38-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-48-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-46-0x0000022673490000-0x00000226734BA000-memory.dmp

                  memory/4304-51-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-52-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-53-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-45-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-62-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-32-0x0000022673010000-0x000002267302E000-memory.dmp

                  memory/4304-33-0x0000022673280000-0x0000022673332000-memory.dmp

                  memory/4304-47-0x0000022673490000-0x00000226734B4000-memory.dmp

                  memory/4304-40-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-39-0x0000022673030000-0x000002267303A000-memory.dmp

                  memory/4304-36-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-35-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-34-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-8-0x0000022672F70000-0x0000022672F92000-memory.dmp

                  memory/4304-29-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-28-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp

                  memory/4304-27-0x00007FFEBC2C0000-0x00007FFEBCC64000-memory.dmp