Detecting IcedID... Could It Be A Trickbot Copycat?

IcedID is a banking trojan, it is designed to be stealthy and built to collect financial information. IcedID harvests user credentials and banking sessions to commit financial crimes, including carding, money laundering, and transferring of funds to foreign financial institutions. In recent research published by Splunk Threat Research Team (STRT) the inclusion of cryptocurrency exchange information was also included by Trickbot in the web inject code. IcedID shares many of the same payloads featured in Emotet or Trickbot and in some cases, IcedID has been observed downloading Emotet or Trickbot, as a way to provide operators a way to use diverse carriers as well.

IcedID targets financial institutions across different countries including banks, payment card providers, and e-commerce sites. IcedID has also been observed deployed in conjunction with other malware payloads such as Valak, Qakbot, Conti Ransomware. It is clear from studying past campaigns that the actors behind IcedID have expanded beyond banking information in order to extend similar features and coverage as other popular carriers such as Emotet or trickbot and by doing so current iterations of IcedID look more like a copycat or maybe even a successor.

Spear Phishing Documents

In a recent campaign, malicious actors were observed using a document builder to simulate legitimate DocuSign documents and embedding exploitation code for CVE-2017-8570 to trigger the installation of IcedID. These documents were delivered via spear-phishing technique.

Below is the screenshot of the phishing campaign (Word and Excel) that will download the IcedID downloader as soon as the user runs the malicious macro document in the targeted host.

This malicious document will download the IcedID loader then drop it as a “.sys” or “.jpg” file and execute it using regsvr32.exe windows application with “-s” parameter like the screenshot below.

Other exploitation vectors include running an obfuscated HTML application (.hta) to download the DLL loader as a .jpg file then execute it with rundll32.exe windows application with the “PluginInit” parameter. Below is the screenshot of the macro code that executes the .hta file and the de-obfuscated .hta script shows how it downloads and executes the first payload.

IcedID Initial Downloader (Stage 1)

The initial IceID loader binary will decrypt another .dll file in memory to download the 2nd stage payload (png or .dat) files. This is done by initially connecting to aws.amazon.com to check the internet connection and to prepare its initial C2 communication.

IcedID Payload Loader - PhotoLoader and “License.dat” decrypter) (Stage 2)

Once the second stage payload is downloaded, It will load a shellcode or headless executable file which is the main IcedID bot. This shellcode can be extracted either in .png file format (payload obfuscated by steganography) or gzip payload format containing a “license.dat” file.

The next code snippet below shows the .dll in memory locating the .png payload in a randomly generated directory based on the user name of the compromised machine created in either %appdata% or “C:\Programdata”. If the .png file payload is found in either of those two folder paths, it will decrypt the shellcode from the image file if not it tries to download from the C&C server.

For the gzip file, It uses a similar code to locate the “license.dat” payload, aside from having an additional parameter check “/i” in the syntax line, as seen in the screenshot below.

IcedID .PNG Steganography and “License.dat” Payload

The PNG payload uses steganography to hide the shellcode inside the PNG. The encrypted shellcode and the 8 bytes rc4 decryption keys are placed in the IDAT chunk type structure of the PNG header file. A python script was developed (IceIdPNGShellcodeExtractor.py) to automatically extract the shellcode on the said payload.

For the “license.dat” IcedID payload, it will decrypt it using its customized decryption algorithm using its last 16 bytes as the decryption key. In this case, the IceIdDecrypt.py tool can be used to decrypt license.dat and do a static analysis of the file.

IcedID Core/Main Bot (Stage 3)

The shellcode or the core IcedID BOT will be injected in either spawned svchost.exe system processor in msiexec.exe or within the memory space of a rundll32 process that loads the .dll shellcode decryptor. After that, it will hook some native API, create a mutex as a mark of its infection, and make sure only one instance is running. Below are other notable behaviors seen in this main bot.

Hook Browser:

This shellcode will try to hook common browsers like firefox and chrome to steal credentials, cookies, and sessions saved. The screenshot below shows what it looks like in firefox and chrome browsers in the compromised machine.

Desktop Screenshots:

This code displays the ability to take screenshots of the desktop window of the compromised host. This bitmap image file format will be saved in the temp folder with a .tmp file extension to blend on normal .tmp files activities.

Passff.tar and cookie.tar

It will also create files named “passff.tar” for the browser history and “cookie.tar” for the browser cookies that may contain stolen browser information.

Stealing Browser Information

IcedID will also download and load a “sqlite64.dll” in the %temp% folder that will be needed for parsing firefox and chrome browser database to extract information. Below are SQLite commands decrypted in the shellcode to harvest autofill information from browser .db like cookies, password, company_name, street_address, city, state, zip code, country_code, phone number, user full name, and credit card information.

SELECT host_key, path, is_secure, (case expires_utc when 0 then 0 else (expires_utc / 1000000) - 11644473600 end), name, length(encrypted_value), encrypted_value FROM cookies
SELECT name, value FROM autofill
SELECT guid, company_name, street_address, city, state, zipcode, country_code FROM autofill_profiles
SELECT guid, number FROM autofill_profile_phones
SELECT guid, first_name, middle_name, last_name, full_name FROM autofill_profile_names
SELECT card_number_encrypted, length(card_number_encrypted), name_on_card, expiration_month || "/" ||expiration_year FROM credit_cards
SELECT origin_url,username_value,length(password_value),password_value FROM logins WHERE username_value <> ''
SELECT host, path, isSecure, expiry, name, value FROM moz_cookies
SELECT fieldname, value FROM moz_formhistory

UAC Bypass

The following are two functions to Bypass UAC (User Account Control). The Eventvwr and the fodhelper UAC bypass technique.

Harvest Email/Outlook Information and Browser Password Storage

Exfiltration tasks also include querying several registry keys related to email client Microsoft Outlook to steal user profiles, email signatures, and stored password folders through registry and ActiveMail Partners. “%u” is the outlook version installed in the machine.

HKCU\Software\Microsoft\Office\%u.0\Outlook\Profiles
HKCU\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles\Outlook\9375CFF0413111d3B88A00104B2A6676
HKCU\Software\Microsoft\ActiveSync\Partners
HKCU\Software\Microsoft\Internet Explorer\IntelliForms\Storage2

Recon AV Product

The following PowerShell commands detect Antivirus Product information.

WMIC /Node:localhost /Namespace:\\root\SecurityCenter2 Path AntiVirusProduct Get * /Format:List

Other Execution and RemoteThread Execution

We also found chcp command execution and passage of the result to a created pipe. The result of this command line may give the locale country region of the compromised host base on its result. For example, the 437 result means “default code page in the US”.

Another regsvr32 execution with “/s” parameter to execute DLL payload downloaded from its C2 server, copy of itself or decrypted DLL that was dropped in the compromised host.

Code injection into a cmd.exe process.

Persistence

IcedID creates a scheduled task entry to download the file that will decrypt and load the license.dat file using a process spawned via the Rundll32 application, as seen in the screenshot below.

In addition to using scheduled tasks for spawning processes, the main bot is also capable of creating a regrun entry for its DLL payload using SHSetValueA API. This will ensure that the DLL will be loaded every time a user logs on.

Create Self Signed Certificate

IcedID will also add certificates into the certificate store that will be saved in the %temp% folder as part of its possible proxy communication to its C2 server bound to IP 127.0.0.1 port 54245. The screenshot below shows the decrypted certificate format that IcedID will add to the certificate store in a .tmp file. This proxy function also compliments the web inject vector as an alternative way to capture traffic and credentials.

The screenshot below shows how IcedID setup proxy from IP 127.0.0.1 port 54245 by listening on the created socket relative to the IP and port mentioned above.

The following are several detection methods created by STRT to address IcedID. All these detections are encompassed in an Analytic story released in our content updates.

Detections

Suspicious Rundll32 Plugininit (New)

| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time) as lastTime from datamodel=Endpoint.Processes where Processes.process_name=rundll32.exe Processes.process=*PluginInit* by Processes.process_name Processes.process Processes.parent_process_name Processes.parent_process Processes.process_id Processes.parent_process_id Processes.dest Processes.user

| `drop_dm_object_name(Processes)`

| `security_content_ctime(firstTime)`

| `security_content_ctime(lastTime)`

Suspicious IcedID Rundll32 Cmdline (New)

| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time)

as lastTime from datamodel=Endpoint.Processes where Processes.process_name=rundll32.exe

Processes.process=*/i:* by Processes.process_name Processes.process

Processes.parent_process_name Processes.parent_process Processes.process_id

Processes.parent_process_id Processes.dest Processes.user

| `drop_dm_object_name(Processes)`

| `security_content_ctime(firstTime)`

| `security_content_ctime(lastTime)`

Rundll32 DNSQuery (New)

`sysmon` EventCode=22 process_name="rundll32.exe"

| stats count min(_time) as firstTime max(_time) as lastTime

by Image QueryName QueryStatus ProcessId direction Computer

| `security_content_ctime(firstTime)`

| `security_content_ctime(lastTime)`

Rundll32 Process Creating Exe Dll Files (New)

`sysmon` EventCode=11 process_name="rundll32.exe" TargetFilename IN ("*.exe", "*.dll",)

| stats count min(_time) as firstTime max(_time) as lastTime

by Image TargetFilename ProcessGuid dest user_id

| `security_content_ctime(firstTime)`

| `security_content_ctime(lastTime)`

Suspicious IcedID Regsvr32 Cmdline (New)

| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time)

as lastTime from datamodel=Endpoint.Processes where Processes.process_name=regsvr32.exe

Processes.process=*-s* by Processes.process_name Processes.process Processes.parent_process_name

Processes.parent_process Processes.process_id Processes.parent_process_id Processes.dest Processes.user

| `drop_dm_object_name(Processes)`

| `security_content_ctime(firstTime)`

| `security_content_ctime(lastTime)`

Rundll32 CreateRemoteThread In-Browser (New)

`sysmon` EventCode=8 SourceImage = "*\\rundll32.exe" TargetImage IN ("*\\firefox.exe", "*\\chrome.exe")

| stats count min(_time) as firstTime max(_time) as lastTime

by SourceImage TargetImage TargetProcessId SourceProcessId StartAddress EventCode Computer

| `security_content_ctime(firstTime)`

| `security_content_ctime(lastTime)`

Office Application Spawn Regsvr32 process (new)

| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time) as lastTime

from datamodel=Endpoint.Processes where (Processes.parent_process_name = "winword.exe" OR Processes.parent_process_name

= "excel.exe" OR Processes.parent_process_name = "powerpnt.exe" OR Processes.parent_process_name = "outlook.exe")

Processes.process_name=regsvr32.exe by Processes.parent_process_name Processes.parent_process Processes.process_name

Processes.process Processes.process_id Processes.process_guid Processes.user Processes.dest

| `drop_dm_object_name("Processes")`

| `security_content_ctime(firstTime)`

|`security_content_ctime(lastTime)`

Recon AVProduct Through Pwh or WMI (Modified)

`powershell` EventCode=4104 (Message = "*SELECT*" OR Message = "*WMIC*") AND (Message = "*AntiVirusProduct*" OR Message = "*AntiSpywareProduct*") | stats count min(_time) as firstTime max(_time) as lastTime by EventCode Message ComputerName User | `security_content_ctime(firstTime)`| `security_content_ctime(lastTime)`

CHCP Command Execution (New)

| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time)

as lastTime from datamodel=Endpoint.Processes

where Processes.process_name=chcp.com Processes.parent_process_name = cmd.exe

Processes.parent_process=*/c* by Processes.process_name Processes.process

Processes.parent_process_name Processes.parent_process Processes.process_id Processes.parent_process_id Processes.dest Processes.user

| `drop_dm_object_name(Processes)`

| `security_content_ctime(firstTime)`

| `security_content_ctime(lastTime)`

Create Remote Thread In Shell Application (New)

`sysmon` EventCode=8 TargetImage IN ("*\\cmd.exe", "*\\powershell*")

| stats count min(_time) as firstTime max(_time) as lastTime

by TargetImage TargetProcessId SourceProcessId EventCode StartAddress SourceImage Computer | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`

Drop IcedID License.dat (New)

`sysmon` EventCode= 11 TargetFilename = "*\\license.dat" AND (TargetFilename="*\\appdata\\*" OR TargetFilename="*\\programdata\\*")

|stats count min(_time) as firstTime max(_time) as lastTime by TargetFilename EventCode process_id process_name Computer | `security_content_ctime(firstTime)`

| `security_content_ctime(lastTime)`

IcedID Exfiltrated Archived File Creation (New)

`sysmon` EventCode= 11 (TargetFilename = "*\\passff.tar" OR TargetFilename = "*\\cookie.tar")

|stats count min(_time) as firstTime max(_time) as lastTime by TargetFilename EventCode process_id process_name Computer | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`

SQLite Module In Temp Folder (New)

`sysmon` EventCode= 11 (TargetFilename = "*\\sqlite32.dll" OR TargetFilename = "*\\sqlite64.dll") (TargetFilename = "*\\temp\\*")

|stats count min(_time) as firstTime max(_time) as lastTime by process_name TargetFilename EventCode ProcessId Image process_id process_name Computer

| `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`

Detection
Techniques ID
Tactics
Description
Defense Tactics & Techniques
Previously seen command line arguments (Existing)
T1059
Execution

Detects for command line arguments where `cmd.exe /c` is used

to execute a program

Detect

D3-SEA

Script Execution Analysis

Eventvwr UAC Bypass (Existing)
T1548.002
Privilege Escalation, Defense Evasion
Detects uac bypass using eventvwr

Detect:

D3-ANET / D3-AZET

Authentication/Authorization Event Thresholding

FodHelper UAC Bypass (Existing)
T1548.002
Privilege Escalation, Defense Evasion
Detects uac bypass using fodhelper

Detect:

D3-ANET / D3-AZET

Authentication/Authorization Event Thresholding

Mshta spawning Rundll32 OR Regsvr32 Process (Existing)
T1218.005
Defense Evasion
Detects suspicious child process of mshta parent process

Detect:

Dynamic Analysis

D3-FAPA

File Access Pattern

D3-PSA

Process Spawn Analysis

Office Application Spawn rundll32 process (Existing)
T1566.001
Initial Access
Detects suspicious rundll32 child process of MS office application

Detect:

File Analysis

D3-DA

Identifier Analysis

D3-HD

URL Analysis

D3-UA

Message Analysis

Sender MTA Reputation

D3-SMRA

Sender Reputation

D3-SRA

Office Document Executing Macro Code (Existing)
T1566.001
Initial Access
Detects suspicious MS office app running macro code

Detect:

File Analysis

D3-DA

Identifier Analysis

D3-HD

URL Analysis

D3-UA

Message Analysis

Sender MTA Reputation

D3-SMRA

Sender Reputation

D3-SRA

Office Product Spawning MSHTA (Existing)
T1566.001
Initial Access
Detects suspicious mshta child process of MS office application

Detect:

File Analysis

D3-DA

Identifier Analysis

D3-HD

URL Analysis

D3-UA

Message Analysis

Sender MTA Reputation

D3-SMRA

Sender Reputation

D3-SRA

Registry Keys Used For Persistence (Existing)
T1547.001
Persistence, Privilege Escalation

Detects modifications to registry keys that can be used

to launch an application or service at system startup

N/A
Schedule Task with Rundll32 Command Trigger (Existing)
T1053
Execution, Persistence, Privilege Escalation
Detects suspicious scheduled task with rundll32 command

Detect

D3-OSM

OS Monitoring

D3-SJA

Scheduled Job Analysis

D3-OSM

Operating System Monitoring

WinEvent Scheduled Task Created Within Public Path (Existing)
T1053
Execution, Persistence, Privilege Escalation
Detects suspicious scheduled task created in a suspicious file path

Detect

D3-OSM

OS Monitoring

D3-SJA

Scheduled Job Analysis

D3-OSM

Operating System Monitoring

Suspicious Regsvr32 Register Suspicious Path (Existing)
T1218.010
Defense Evasion
Detects regsvr32 execution with suspicious DLL file path

Detect:

Dynamic Analysis

D3-FAPA

File Access Pattern

D3-PSA

Process Spawn Analysis

Account Discovery With Net App (Existing)
T1087.002
Discovery
detects a potential account discovery through a series of commands.
N/A
NLTest Domain Trust Discovery (Existing)
T1482
Discovery
Detects execution of `nltest.exe` with suspicious parameter
N/A
Recon AVProduct Through Pwh or WMI(Modified)
T1592
Reconnaissance
Detects command to gather AV product info
N/A
Suspicious Rundll32 Plugininit (New)
T1218.011
Defense Evasion
Detects PluginInit parameter of Rundll32 process
N/A
Suspicious IcedID Rundll32 Cmdline (New)
T1218.011
Defense Evasion
Detects known IcedID rundll32 parameter.
N/A
Rundll32 DNSQuery (New)
T1218.011
Defense Evasion
Detects DNS query from rundll32 process
N/A
Rundll32 Process Creating Exe Dll Files (New)
T1218.011
Defense Evasion
Detects rundll32 process dropping executable files
N/A
Suspicious IcedID Regsvr32 Cmdline (New)
T1218.010
Defense Evasion
Detects regsvr32 process with known “-s” parameter
N/A
Rundll32 CreateRemoteThread In Browser (New)
T1055
Defense Evasion, Privilege Escalation
Detects Process Injection to a browser from rundll32 process
N/A
Office Application Spawn Regsvr32 process (new)
T1566.001
Initial Access
Detects suspicious regsvr32 child process of office application

Detect:

File Analysis

D3-DA

Identifier Analysis

D3-HD

URL Analysis

D3-UA

Message Analysis

Sender MTA Reputation

D3-SMRA

Sender

Rundll32 Create Remote Thread To A Process (New)
T1055
Defense Evasion, Privilege Escalation
Detects process Injection made by rundll32
N/A
CHCP Command Execution (New)
T1059
Execution
Detects chcp.com execution

Detect

D3-SEA

Script Execution Analysis

Create Remote Thread In Shell Application (New)
T1055
Defense Evasion, Privilege Escalation
Detects Process Injection in Shell Application
N/A
Drop IcedID License dat (New)
T1204.002
Execution
Detects suspicious license.dat file creation

Detect:

File Analysis

D3-DA

Identifier Analysis

D3-HD

IcedID Exfiltrated Archived File Creation (New)
T1560.001
Collection
Detects creation of archived files related to IcedID data collection

Detect:

File Content Rules

D3-FCR

File Hashing

D3-FH

Sqlite Module In Temp Folder (New)
T1005
Collection
Detects the creation of sqlite module in %temp% folder
N/A

Hashes

Contributors

We would like to thank the following for their contributions to this post: Teoderick Contreras and Rod Soto.

Related Articles

Predicting Cyber Fraud Through Real-World Events: Insights from Domain Registration Trends
Security
12 Minute Read

Predicting Cyber Fraud Through Real-World Events: Insights from Domain Registration Trends

By analyzing new domain registrations around major real-world events, researchers show how fraud campaigns take shape early, helping defenders spot threats before scams surface.
When Your Fraud Detection Tool Doubles as a Wellness Check: The Unexpected Intersection of Security and HR
Security
4 Minute Read

When Your Fraud Detection Tool Doubles as a Wellness Check: The Unexpected Intersection of Security and HR

Behavioral analytics can spot fraud and burnout. With UEBA built into Splunk ES Premier, one data set helps security and HR reduce risk, retain talent, faster.
Splunk Security Content for Threat Detection & Response: November Recap
Security
1 Minute Read

Splunk Security Content for Threat Detection & Response: November Recap

Discover Splunk's November security content updates, featuring enhanced Castle RAT threat detection, UAC bypass analytics, and deeper insights for validating detections on research.splunk.com.
Security Staff Picks To Read This Month, Handpicked by Splunk Experts
Security
2 Minute Read

Security Staff Picks To Read This Month, Handpicked by Splunk Experts

Our Splunk security experts share their favorite reads of the month so you can follow the most interesting, news-worthy, and innovative stories coming from the wide world of cybersecurity.
Behind the Walls: Techniques and Tactics in Castle RAT Client Malware
Security
10 Minute Read

Behind the Walls: Techniques and Tactics in Castle RAT Client Malware

Uncover CastleRAT malware's techniques (TTPs) and learn how to build Splunk detections using MITRE ATT&CK. Protect your network from this advanced RAT.
AI for Humans: A Beginner’s Field Guide
Security
12 Minute Read

AI for Humans: A Beginner’s Field Guide

Unlock AI with the our beginner's field guide. Demystify LLMs, Generative AI, and Agentic AI, exploring their evolution and critical cybersecurity applications.
Splunk Security Content for Threat Detection & Response: November 2025 Update
Security
5 Minute Read

Splunk Security Content for Threat Detection & Response: November 2025 Update

Learn about the latest security content from Splunk.
Operation Defend the North: What High-Pressure Cyber Exercises Teach Us About Resilience and How OneCisco Elevates It
Security
3 Minute Read

Operation Defend the North: What High-Pressure Cyber Exercises Teach Us About Resilience and How OneCisco Elevates It

The OneCisco approach is not about any single platform or toolset; it's about fusing visibility, analytics, and automation into a shared source of operational truth so that teams can act decisively, even in the fog of crisis.
Data Fit for a Sovereign: How to Consider Sovereignty in Your Digital Resilience Strategy
Security
5 Minute Read

Data Fit for a Sovereign: How to Consider Sovereignty in Your Digital Resilience Strategy

Explore how digital sovereignty shapes resilient strategies for European organisations. Learn how to balance control, compliance, and agility in your data infrastructure with Cisco and Splunk’s flexible, secure solutions for the AI era.