CVE-2024-3400: PAN-OS Command Injection Vulnerability in GlobalProtect Gateway. Learn More

CVE-2024-3400: PAN-OS Command Injection Vulnerability in GlobalProtect Gateway. 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
Offensive Security
Solutions to maximize your security ROI
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

Magnitude Exploit Kit Backend Infrastructure Insight - Part II

Welcome back to another edition of "exposing Magnitude exploit-kit internals"! As already mentioned in our previous posts (1st and 2nd), the back-end infrastructure of this highly prevalent Exploit Kit has been revealed to be pretty exciting from the security research point-of-view. With this post, we'll expose additional features and cool tricks that Magnitude uses, reveal more information about its infrastructure and talk about its implementation in the wild.

Here is the Magnitude exploit kit Infrastructure schema: 1

Figure 1. The Magnitude architecture

You will notice that the Magnitude Infrastructure can be generally divided into three different roles:

 

  • Gateway Servers – Those instances serve as the first access point of redirected victims' traffic. The Magnitude gateway performs initial validation of victims (which we'll explain later) and redirects to an active Malware Distribution server.
  • Malware Distribution (MD) Server – Those servers perform further validation of the redirected traffic, then serve the Magnitude landing page followed by exploits and malicious payloads that are distributed to the victims' machines after exploitation.
  • A Management Panel– This single instance is used by Magnitude customers in order to configure and control their malicious campaigns (e.g., upload payloads, view statistics and more). This panel was reviewed in detail at the 1st Magnitude blog.

This blog post is dedicated to the Magnitude Gateway server, its features and its operation. In order to get a better hold of this information, let's examine the process of creating a new malicious campaign:

Configuring and Launching a Campaign:

First, a cybercriminal wishing to use Magnitude must decide how to redirect traffic to the exploit kit.

Magnitude provides two options:

  • Redirect traffic to the Gateway Servers – This option allows filtering traffic based on several pre-provided and configurable filters, such as: geo-location, HTTP referrers, language etc. Magnitude Gateway also provides deeper and more extended verification on each redirected victim (detailed below). Traffic that passes the gateway filters is redirected to the Magnitude MD server to be exploited.
  • Redirect traffic straight to Magnitude MD server – With this option the traffic is redirected directly to the MD server. The customer can get the most up-to-date MD server URL using an API which is provided in the Magnitude Management Panel. This option is compelling for cybercriminals who prefer filtering their traffic by some other 3rd party solutions such as TDS (Traffic Distribution System) servers and then redirect it directly to those servers.

Cybercriminals wishing to redirect traffic through the gateway servers can request a domain from the Magnitude support team and the team will register the domain for them. This domain will be used as a destination for the redirected traffic and will point to the gateway servers. Remember, Magnitude's financial model is based on customers "paying" with web traffic. The Magnitude admins infect about 20% of the exploitable traffic with their own malware – all of that and more is discussed in our previous blog.

Most of the domain names used by Magnitude customers look very similar to legit sites, most of them are low profile. For example: "exemple.com" will be chosen as it looks similar to the legit site "example.com". The cybercriminals can control and edit this site and how it acts in the Magnitude Management Panel. This panel uses the Russian language. Below is an English translation.

12568_ef2c56e5-d7b9-4200-a98c-8faf0bd03a96
Figure 2. New Magnitude Gateway domain configuration

Magnitude customers can enable and disable the domain. If it is disabled, they can configure whether to serve a fake page for that domain, redirect that traffic to a certain URL or return an error.

The Initial Infection Phase

Now let's see how the Gateway server is being used as a part of the infection flow:

10865_9d80d0ed-6e5d-44fd-947a-8d2467071185

Figure 3. Exploitation flow first stage

Note: The typo in the domain name is intentional.

Magnitude customers use methods such as malvertisment, traffic brokers or compromised sites to redirect victims to the gateway servers.

Magnitude gateway servers check their internal database for the domain configuration including whether it's enabled or disabled, and the filtering parameters with each request they receive. Next, the gateway filters out requests from security vendors and law enforcement agencies based on their source IP:

12352_e6be1a08-c2a8-4e30-967b-a3e950c9ca71

Figure 4. Magnitude Gateway filtering code block
  • The code searches the "banlist" database table for the victim's source IP address. This table contains about 1,400 IP range records belonging to several high profile companies such as Google and Microsoft and security vendors such as Symantec, McAfee, Team-Cymru, Trendmicro and also law enforcement agencies such as the Department of Homeland Security.
  • The banbyhostname() function receives the victims' hostname as a parameter by using the PHP's native function "gethostbyaddr." Banbyhostname() searches for the presence of the following words in the victim's hostname: "whois", "proxy", "yahoo", "opera", ".mil", ".gov", "google", "demon", "localhost", "dedicated", "hosting", "leaseweb", "cisco" and "bot". This is another method to evade detection by security vendors / law enforcement agencies / internet crawlers.
  • You may notice that strangely Magnitude doesn't filter requests from Australia regardless of their IP or hostname. The reason behind that logic is unclear. Australia probably is a good monetizing source for the exploit kit admin and perhaps the first two filters above caused too many 'false positives' with requests originating from Australia.

The next step conducted by the Gateway servers uses the checkcountry() function in order to filter out requests from forbidden countries list:

9122_4ad7095e-34c3-41af-ae6d-b1eb8b3dd2ab

Figure 5. Magnitude Gateway forbidden countries filter

If the requests originates from one of the forbidden countries, checkcountry() returns true, $redir will be set to zero, instructing the Gateway NOT to redirect that victim to the MD server. The concept and reasons for not accepting victim's traffic from former USSR countries, small countries from Asia, the Middle East, Africa and South America were presented in our first blog post on Magnitude.

The Magnitude Gateway will continue to perform additional filtering, this time based on the HTTP headers:

9195_4e034904-e413-4f8c-a593-01279c2b8ab1

Figure 6. Magnitude Gateway bots and proxies filtering code block

First, this code filters out requests made by Internet Explorer 6 on Windows XP, possibly because this User-Agent is commonly used by many security vendors and crawlers. Then, this code filters out requests from web crawlers, specifically if 'google' or 'bot' appear in the User-Agent text. Finally, the Gateway filters web traffic with HTTP headers commonly used by web proxies.

The last filtering phase uses the settings that the cybercriminal configured in the Management Panel: such as allowed countries, HTTP referers or languages.

The Gateway servers are also responsible for collecting statistics per domain and they are provided in the Management Panel. Detailed description of these statistics is provided in our first blog.

FINALLY, victims that passed all the above filters ($redir = 1) will be redirected to the Magnitude MD server:

10059_796eb598-d771-4e07-9c46-eb40f405fbe9

Figure 7. Magnitude Gateway redirection to MD server

This code uses the domaincrypt() function. There are several observations about the logic behind Magnitude MD server URL structure that can be learned by analyzing this function.

Magnitude URL Structure Logic

If you ever monitored or analyzed Magnitude infections you must have scratched your head wondering what that long subdomain value before the domain name is and what it represents. If not, here are some examples of Magnitude MD server URLs that were used for infecting victims in the past:

  • e504.01c4.a8022.1c.190.ed2e62b.575.808f.hyixoangcqh.cassetteterms.eu
  • 241020.2dba.6d01312.011.a85.6b4.d4.df92.cftbmxjli.folksbuilt.in
  • 751.895a24.1c7872.05a3.4d.2dafca.a1e.c2.qgzocpal.sliptried.in
  • e2f.18.bc5.465f.90.33c10.26.1e098.26.efee.motbypqfa.afternoonride.pw

Recall the Magnitude Gateway redirection code aforementioned:

11049_a5f8098a-be56-41c2-8287-f1b03d0d5220

The implementation of the domaincrypt() function looks as follows:

12409_e8b0f5e8-1089-4225-b442-a558cd1c237d

Figure 8. Magnitude URL logic

The domaincrypt() function gets an MD5 value of the concatenation of two strings:

  • $site – This variable is a unique numeric value that represents the Magnitude customer ID. Its value is always between 1 and 75. This ID value is retrieved from the Gateway server internal database for each victim's request. The customer ID value is associated with the current domain. That's how Magnitude Gateway knows whom to credit for each redirected victim.
  • $redirdomain – contains a short random string concatenated with the current MD server domain name. This value is retrieved from the Gateway server internal database and is updated every minute by a Cron job. For the examples above the $redirdomain is:
    • hyixoangcqh.cassetteterms.eu
    • cftbmxjli.folksbuilt.in
    • qgzocpal.sliptried.in
    • motbypqfa.afternoonride.pw

domaincrypt() function simply splits the hash value into short parts, between 5 and 16 parts, and adds dots between them. That becomes the first part of the MD server URL. That's how the Magnitude admin can retrieve the customer ID from the URL. For example, let's take one of the URLs above and see how to extract the Magnitude customer ID:

e504.01c4.a8022.1c.190.ed2e62b.575.808f.hyixoangcqh.cassetteterms.eu

  • Construct the hash from the first part: e50401c4a80221c190ed2e62b575808f
  • Compute the MD5 hashes of concatenations of any integer between 1 to 75 with the second part of the URL (hyixoangcqh.cassetteterms.eu). The integer that produces the hash above is the customer ID.

The following simple script can be used to retrieve the customer ID:

8720_36a24c52-34ac-477f-87be-7684783576c4

Because MD5(23hyixoangcqh.cassetteterms.eu) = e50401c4a80221c190ed2e62b575808. The script's output is:

9155_4c2efdb9-dc88-4fcc-acbb-2bfff8db7288

Using the algorithm above allows you to retrieve the campaign manager ID from Magnitude URLs. That's exactly what the Magnitude MD servers do.

Magnitude Gateway Fake Sites Mechanism

You may recall that one of the options that cybercriminals have when configuring a new Magnitude campaign is to serve a fake site. We were a bit curious why Magnitude customers need this option and how it works.

11162_ab80d62b-0334-4882-aac8-64bae9f918ec
Figure 9. Magnitude Gateway fake page flow

The purpose of the fake site option is to cause Magnitude Gateway URLs to appear as innocent sites without trying to exploit the client. This solution comes handy when Magnitude clients use traffic brokers or legitimate advertisement services as their main traffic source. The fake site' mechanism can be configured by customers in the Magnitude Management Panel using the "Fake:" textbox:11174_ac0bda31-5687-484b-853c-eea2f55680a1

When the URL is disabled (the 'Active' checkbox is unchecked) and the 'Fake:' textbox is filled, the malicious exemple.com URL, which points to Magnitude Gateway, will fully mimic the legitimate example.com site, including all content such as HTML and JS code as well as images and styles. It will even return the exact same server HTTP Headers as the legitimate site.

How does this solution actually work? When the fake site mechanism is activated, the Magnitude Gateway runs the following code:

11131_aa241004-aca1-4ded-889a-9c32fbe8ef4c

Figure 10. Fake pages directory structure and cache calculation

This code runs for every request made. First, the $host variable contains the current Gateway URL, e.g. exemple.com. A new directory with full permissions is created for each URL. The $url variable contains the URL of the legit site with the URI of current request. For example, when a victim accesses http://www.exemple.com/page.html the $url variable will be http://www.example.com/page.html. The http_class object is used to send a web request to the legit site and parse the response and the headers. The $md5cache is the MD5 value of the legit site URL, for example: "www.example.com/page.html?a=1".

In order to optimize performance, every request gets cached. Only if it already doesn't exist in cache, Magnitude will fetch the content from the legit site:

10810_9aa4d145-8a81-4aa5-9e01-73d72510afe5

Figure 11. Request made to legit site in order to get cached

The headers also get cached and are served to the victim using the code below:

11124_a9ec3950-a8f9-46a5-9d14-289692b0e3fb

Figure 12. Legit site server headers fetching

Then, the content of the page is saved to the $content variable:

12829_fb07d526-9cea-4c09-b992-f275325d7fb6

Figure 13. Legit site content fetching

The $headers array is saved as a serialized object:

 

11468_bab208e1-2ee6-40e4-8ff4-380fb80e80c5
Figure 14. Legit site content and headers get cached

The Fake sites FAQ, located in the Magnitude Management Panel, recommends keeping the fake site option activated for few days. That way it gets tagged as legitimate ads/click brokers' destination. And only then start redirecting to the Magnitude MD server.

Stay tuned for the next blog where we'll continue to examine the Magnitude exploitation flow and present the Magnitude MD server landing-page logic, how Magnitude admins capitalize from the exploit-kit and much more!

Latest SpiderLabs Blogs

Fake Dialog Boxes to Make Malware More Convincing

Let’s explore how SpiderLabs created and incorporated user prompts, specifically Windows dialog boxes into its malware loader to make it more convincing to phishing targets during a Red Team...

Read More

The Secret Cipher: Modern Data Loss Prevention Solutions

This is Part 7 in my ongoing project to cover 30 cybersecurity topics in 30 weekly blog posts. The full series can be found here. Far too many organizations place Data Loss Prevention (DLP) and Data...

Read More

CVE-2024-3400: PAN-OS Command Injection Vulnerability in GlobalProtect Gateway

Overview A command injection vulnerability has been discovered in the GlobalProtect feature within Palo Alto Networks PAN-OS software for specific versions that have distinct feature configurations...

Read More