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.
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.
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.
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.
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.
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.
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.
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.
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.
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 |
The following are two functions to Bypass UAC (User Account Control). The Eventvwr and the fodhelper UAC bypass technique.
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 |
The following PowerShell commands detect Antivirus Product information.
WMIC /Node:localhost /Namespace:\\root\SecurityCenter2 Path AntiVirusProduct Get * /Format:List |
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.
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.
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.
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) |
Execution |
Detects for command line arguments where `cmd.exe /c` is used to execute a program |
Detect Script Execution Analysis |
|
Eventvwr UAC Bypass (Existing) |
Privilege Escalation, Defense Evasion |
Detects uac bypass using eventvwr |
Detect: Authentication/Authorization Event Thresholding |
|
FodHelper UAC Bypass (Existing) |
Privilege Escalation, Defense Evasion |
Detects uac bypass using fodhelper |
Detect: Authentication/Authorization Event Thresholding |
|
Mshta spawning Rundll32 OR Regsvr32 Process (Existing) |
Defense Evasion |
Detects suspicious child process of mshta parent process |
Detect: Dynamic Analysis File Access Pattern Process Spawn Analysis |
|
Office Application Spawn rundll32 process (Existing) |
Initial Access |
Detects suspicious rundll32 child process of MS office application |
Detect: File Analysis Identifier Analysis URL Analysis Message Analysis Sender MTA Reputation Sender Reputation |
|
Office Document Executing Macro Code (Existing) |
Initial Access |
Detects suspicious MS office app running macro code |
Detect: File Analysis Identifier Analysis URL Analysis Message Analysis Sender MTA Reputation Sender Reputation |
|
Office Product Spawning MSHTA (Existing) |
Initial Access |
Detects suspicious mshta child process of MS office application |
Detect: File Analysis Identifier Analysis URL Analysis Message Analysis Sender MTA Reputation Sender Reputation |
|
Registry Keys Used For Persistence (Existing) |
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) |
Execution, Persistence, Privilege Escalation |
Detects suspicious scheduled task with rundll32 command |
Detect OS Monitoring Scheduled Job Analysis Operating System Monitoring |
|
WinEvent Scheduled Task Created Within Public Path (Existing) |
Execution, Persistence, Privilege Escalation |
Detects suspicious scheduled task created in a suspicious file path |
Detect OS Monitoring Scheduled Job Analysis Operating System Monitoring |
|
Suspicious Regsvr32 Register Suspicious Path (Existing) |
Defense Evasion |
Detects regsvr32 execution with suspicious DLL file path |
Detect: Dynamic Analysis File Access Pattern Process Spawn Analysis |
|
Account Discovery With Net App (Existing) |
Discovery |
detects a potential account discovery through a series of commands. |
N/A |
|
NLTest Domain Trust Discovery (Existing) |
Discovery |
Detects execution of `nltest.exe` with suspicious parameter |
N/A |
|
Recon AVProduct Through Pwh or WMI(Modified) |
Reconnaissance |
Detects command to gather AV product info |
N/A |
|
Defense Evasion |
Detects PluginInit parameter of Rundll32 process |
N/A |
||
Defense Evasion |
Detects known IcedID rundll32 parameter. |
N/A |
||
Rundll32 DNSQuery (New) |
Defense Evasion |
Detects DNS query from rundll32 process |
N/A |
|
Defense Evasion |
Detects rundll32 process dropping executable files |
N/A |
||
Defense Evasion |
Detects regsvr32 process with known “-s” parameter |
N/A |
||
Defense Evasion, Privilege Escalation |
Detects Process Injection to a browser from rundll32 process |
N/A |
||
Initial Access |
Detects suspicious regsvr32 child process of office application |
Detect: File Analysis Identifier Analysis URL Analysis Message Analysis Sender MTA Reputation Sender |
||
Defense Evasion, Privilege Escalation |
Detects process Injection made by rundll32 |
N/A |
||
CHCP Command Execution (New) |
Execution |
Detects chcp.com execution |
Detect Script Execution Analysis |
|
Defense Evasion, Privilege Escalation |
Detects Process Injection in Shell Application |
N/A |
||
Drop IcedID License dat (New) |
Execution |
Detects suspicious license.dat file creation |
Detect: File Analysis Identifier Analysis |
|
Collection |
Detects creation of archived files related to IcedID data collection |
Detect: File Content Rules File Hashing |
||
Collection |
Detects the creation of sqlite module in %temp% folder |
N/A |
File |
Sha1 |
Tetoomdu64.dll |
|
license.dat |
|
Xls macro |
|
docBorderWin.jpg |
|
Hta loader |
|
sadl.dll |
We would like to thank the following for their contributions to this post: Teoderick Contreras and Rod Soto.
The Splunk platform removes the barriers between data and action, empowering observability, IT and security teams to ensure their organizations are secure, resilient and innovative.
Founded in 2003, Splunk is a global company — with over 7,500 employees, Splunkers have received over 1,020 patents to date and availability in 21 regions around the world — and offers an open, extensible data platform that supports shared data across any environment so that all teams in an organization can get end-to-end visibility, with context, for every interaction and business process. Build a strong data foundation with Splunk.