Trustwave SpiderLabs Uncovers Unique Cybersecurity Risks in Today's Tech Landscape. Learn More

Trustwave SpiderLabs Uncovers Unique Cybersecurity Risks in Today's Tech Landscape. Learn More

Services
Capture
Managed Detection & Response

Eliminate active threats with 24/7 threat detection, investigation, and response.

twi-managed-portal-color
Co-Managed SOC (SIEM)

Maximize your SIEM investment, stop alert fatigue, and enhance your team with hybrid security operations support.

twi-briefcase-color-svg
Advisory & Diagnostics

Advance your cybersecurity program and get expert guidance where you need it most.

tw-laptop-data
Penetration Testing

Test your physical locations and IT infrastructure to shore up weaknesses before exploitation.

twi-database-color-svg
Database Security

Prevent unauthorized access and exceed compliance requirements.

twi-email-color-svg
Email Security

Stop email threats others miss and secure your organization against the #1 ransomware attack vector.

tw-officer
Digital Forensics & Incident Response

Prepare for the inevitable with 24/7 global breach response in-region and available on-site.

tw-network
Firewall & Technology Management

Mitigate risk of a cyberattack with 24/7 incident and health monitoring and the latest threat intelligence.

Solutions
BY TOPIC
Microsoft Exchange Server Attacks
Stay protected against emerging threats
Rapidly Secure New Environments
Security for rapid response situations
Securing the Cloud
Safely navigate and stay protected
Securing the IoT Landscape
Test, monitor and secure network objects
Why Trustwave
About Us
Awards and Accolades
Trustwave SpiderLabs Team
Trustwave Fusion Security Operations Platform
Trustwave Security Colony
Partners
Technology Alliance Partners
Key alliances who align and support our ecosystem of security offerings
Trustwave PartnerOne Program
Join forces with Trustwave to protect against the most advance cybersecurity threats
SpiderLabs Blog

“Catch Me If You Can” Trojan Banker Zeus Strikes Again (Part 4 of 5)

This is the fourth part in a series of blogs. The prior blogs describe the technical details of the tools and the techniques used by the cyber gang to gain control of the infected machines.

"Catch Me If You Can" Trojan Banker Zeus Strikes Again (Part 3 of 5)

In this blog we will examine the Zeus Trojan banker process and take a further look at its control panel and the source code of its command and control server.

Zeus Trojan Banker

Once the Zeus Trojan Banker variant is downloaded and installed on the victim's machine, it attaches to system processes (Explorer.exe, ctfmon.exe) and copies itself into the "Application Data" folder of the user's personal folders. One of many registry changes made by the Trojan is adding itself to the following key:

"HKU\Software\Microsoft\Windows\CurrentVersion\Run". This allows the Trojan to run every time the PC reboots.

BSL_12364_e72d80e7-06b9-4789-b951-2739f141374e
Figure 1: VirusTotal results 8/42 for the packed Zeus malware

8288_20a0edd3-d69e-49c3-adc0-11f1364be0a4
Figure 2: VirusTotal results 6/42 for the Zeus malware, after unpacking UPX

The anti-virus results are low because the Trojan is easily replaced every couple of days with a new undetected variant.

The second phase of the malware involves downloading a configuration file from secondconcert.ru (46.180.70.139), hosted in Shenyang (China) according to the GeoIP database, though the core of this cyber-criminal attack operation is located in Moldova.

BSL_7903_0e03023c-5f37-49d3-b45a-e0fbe1dffe56
Figure 3: Zeus hooks on "Explorer.exe" process and accesses its C&C server

BSL_12471_eb3949a0-046d-4bfc-b393-c4e16c57a945
Figure 4: Zeus accesses its C&C and downloads new encrypted configuration


This botnet works in a clean and tidy fashion, which helps it stay under the radar for several months. The Zeus first accesses a server that is unrelated to the master C&C server. Moreover, the configuration file is delivered only to machines located in the U.K. to evade unnecessary traffic, and more importantly, to bypass security research analysis using techniques like sandboxing.

BSL_11187_ad2a64e6-7126-4a1f-bcf7-f89207955e31
Figure 5: Access of "JPG" file not from the U.K.

The screenshot above describes one of the evasive techniques driven by the cybercriminal group. Accessing the configuration file from outside of the U.K. will result in a 404 "Page not found" error.

The configuration file is downloaded by the Trojan and contains a list of websites that are monitored by the bot. The bot sends cookie and credentials information that pertain to those sites. The Trojan monitors access to approximately 30 banking websites and several leading websites; it targets the most familiar banks in U.K.

Zeus in Action

The cybercriminals develop or purchase Zeus plug-ins for each bank. In order to manipulate the transactions committed by the user, the cybercriminals prefer to avoid modifying the original Web pages using the bot, so they download a JS file instead. This way, the script is more flexible and can be modified easily without "touching" the hooked code on the browser's processes. Once the user accesses one of the bank sites from the above list, two scripts are injected at the bottom of the Web page. One is taken from the C&C server, and the second one is JQuery API that is taken from the Google website ("googleapi.com") and is used for auxiliary functions.

BSL_8400_2793e2e2-f5d3-463f-8201-5d350563b95cFigure 6: Code injected to one of the bank Web pages

BSL_8361_25046092-6aaf-4642-8225-1e75741ce926
Figure 7: Fiddler dump, describing the browser access to the hostile server

Money Transaction Manipulation Process

Once the user intends to transfer money from one account to another, the Zeus Trojan accesses the C&C server and requests a money mule. Money mules are people who receive transfers from compromised bank accounts and forward them to the cybercriminal group. Money mules are sometimes unaware that they play part in a crime, as the "job" is described benignly as a "Financial Agent" by the cybercriminals. We identified nearly 1,500 unique names of money mules in the server logs from this attack (for all banks combined).

The APACHE log below is taken from the original malicious web server. It shows a report sent by the Zeus Trojan running on compromised machines.

7728_060da289-f700-481d-8e34-1c13c594999bFigure 8: A report snippet from the malicious web server


The data sent from the user is base64 encoded. After decoding it shows:

Figure 9: Decoded transaction informationFigure 9: Decoded transaction information

Decoding this content uncovers further details regarding the communication between the Trojan and the C&C server. Every request transmitted by the Trojan holds a unique ID – "uuid." Along with its own ID, the Trojan sends a desired operation in the "action" field. The code above describes a request by the Trojan to receive money mule account information (that the money will be transferred to). It also sends the user's account balance to the server.

The C&C server selects the appropriate money mule based on the information from the client:

8404_27ab9028-3bfc-4af8-8419-061801f37ee6

Figure 10: Server side PHP code for selecting the money mule

The code from the server, shown below, includes the algorithm that calculates how to select a money mule from the database. The script determines the minimum and maximum amounts the victim can send and that the money mule can receive. Afterwards, it picks a random amount within this range and sends it back to the calling function. The script above removes irrelevant data from the "worker" object, encodes it in JSON format and sends it back to the Trojan. It locks the money mule to ensure it won't be used at the same time by a different Trojan until the transaction is complete.

9203_4e2e4bda-879f-4ed8-8738-018f047ab6efFigure 11: PHP server side code, money calculator generator.

9173_4d4461f7-3740-43ca-9c6f-f9647578cb5aFigure 12: Control panel, money mule tab (Worker)

The screenshot above is taken from the original control panel of the administrator. The manager adds money mules delivered by his suppliers (under "master name"), and the system pulls the money mule according to the configuration: the selected bank and the amount that can be delivered.

Using the injected JavaScript we mentioned earlier, the Zeus Trojan monitors every step taken by the user during her bank activity.

BSL_12308_e4a3145f-dcea-4071-91fa-3e96ecdde141Figure 13: Snippet code from the downloaded JS file.

As shown by the marked code above, the process is divided into controlled steps, while the last step (step 4) is the actual transaction confirmation: "Your payment has been sent."

BSL_7742_06bdda24-64ed-4862-90bc-df6731794dfdFigure 14: A server log entry indicating a successful transaction

The Trojan updates the C&C server with every step that is committed by the user during the money transfer. The log above shows a successful transaction manipulated by the Trojan with the name of the money mule chosen to be beneficiary of the money transfer.

11703_c6388b11-0851-4a64-a3e0-8d25b7a4a4b6Figure 15: Control panel, operation section.

The manager is able to watch all the successful transactions of each Trojan, along with the amounts that were transferred to the money mules. The system used to control this scam is not part of any known malicious pack, and it seems it was built specifically for this operation. The code on the server is updated on a daily basis.

In the next and the last blog in this series, we will show the distribution and damage which was caused by this cybercrime attack.

Latest SpiderLabs Blogs

Zero Trust Essentials

This is Part 5 in my ongoing project to cover 30 cybersecurity topics in 30 weekly blog posts. The full series can be found here.

Read More

Why We Should Probably Stop Visually Verifying Checksums

Hello there! Thanks for stopping by. Let me get straight into it and start things off with what a checksum is to be inclusive of all audiences here, from Wikipedia [1]:

Read More

Agent Tesla's New Ride: The Rise of a Novel Loader

Malware loaders, critical for deploying malware, enable threat actors to deliver and execute malicious payloads, facilitating criminal activities like data theft and ransomware. Utilizing advanced...

Read More