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

Breaking Smart [Bank] Statements

Context

In Mexico, it’s possible to receive your monthly bank statement via email.

Mexico's banking and securities regulator (CNBV) says that security mechanisms must be applied to the bank statement to avoid an unauthorized third party.

CitiBanamex sends two types of Bank Statements via email:

  1. Encrypted PDF. Used for most accounts.
  2. Smart Statements. In 2018, it was sent only to Credit Cards of the type “Tarjetas Oro, Prestige y Beyond Citibanamex”.

 

Analysis

The Smart Statement is an HTML file that requests a password to decrypt the content of your monthly credit card statement.

After some analysis of the HTML, here’s what it contains:

  • Lots of JavaScript (around 93% of the file)
  • Some CSS (approximately 6% of the file)
  • Some HTML (approximately 1% of the file)

Clearly, we must dig in the JavaScript code to understand what’s going on.

  • It has 31 JavaScript functions and a lot of variables.
    • Some are very similar: hexCrypt0, hexCrypt1, hexCrypt2, etc.
    • One is particularly interesting: validatePswd
  • After some beautify of the JS and following the logic, here’s a simple diagram of what’s happening:

 

Image001Figure 1. Logic diagram for decryption

 

The ‘desenc’ function is quite simple. It makes mainly two things:

  • Calls one functions 30 times (push the result to an array).
  • Replace the window with the content of the array.

We can see the code in the following image:

Image002Figure 2. Code of the “desenc” function

 

Here’s the decrypt function:

Image003Figure 3. Code of the “decrypt” function (RC4)

 

After some analysis, we can conclude it looks like RC4.

 

RC4

RC4 (Rivest Cipher 4) is a stream cipher, also known as ARC4 or ARCFOUR. It’s more than 20 years old (Leaked in 1994 & designed in 1987). It’s not considered a strong encryption algorithm.

The only difference with the original RC4 algorithm is line 18, since it’s not adding 1.

There are some attacks on the RC4 algorithm like “Fluhrer, Mantin and Shamir attack”, “Royal Holloway attack”, “NOMORE attack”, amongst others, but they are not simple to execute.

You should never use the same key to encrypt more than one message in any stream cipher. However, in this case, they use the same key to encrypt 30 different messages. We can take advantage of this.

The desired output is HTML, and we can perform a Known-plaintext attack since the first part of the HTML will be the same for every bank statement (it includes some CSS & JS code).

 

Breaking RC4

Here is a simple diagram of how the encryption works:

Image004Figure 4. Simplified diagram of a stream cipher

 

Since we have the Encrypted Text (it’s in the HTML) and we have the Plain Text (the first block is always the same, and we can obtain it from any Bank Statement we have access to) we can use them to obtain the keystream. Finally, we will use the keystream to decrypt the rest of the encrypted blocks.

The attack will use the following logic:

Image005Figure 5. Idea behind the attack

 

Analysis after fix

After the vendor notified us that they had fixed the issue, we verified that it was indeed fixed. They stopped using RC4, and the decrypt function now uses AES:

DecryptFigure 6. Code of the new “decrypt” function

 

The use CryptoJS v3.1.2 for all the cryptographic functions and that’s a good idea.

 

Responsible Disclosure Timeline

This issue was disclosed to the vendor in a timely manner, and this blog post was held until the problem was fixed. Here’s the disclosure timeline:

  • March 22, 2018: Disclosed to the vendor
  • April 30th, 2018: Vendor responded
  • July 19th, 2018: Vendor confirms the fix

Conclusions

To conclude this post, I would like to share some recommendations & thoughts:

  • It’s a good idea to have an in-depth security review before rolling out a new product
  • Hire specialists if needed
  • Always use cryptography algorithms that are considered safe
  • Never roll your own cryptography algorithms (nor implement them differently)
  • Never use the same key more than once in a stream cipher
  • If possible, have a simple, safe & clear way of communicating security issues to your organization

Latest SpiderLabs Blogs

EDR – The Multi-Tool of Security Defenses

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

Read More

The Invisible Battleground: Essentials of EASM

Know your enemy – inside and out. External Attack Surface Management tools are an effective way to understand externally facing threats and help plan cyber defenses accordingly. Let’s discuss what...

Read More

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