HUNTERS INTERNATIONAL Ransomware Attack on Cargills Bank: A Deep Dive into Cybersecurity Threats

Listen to this Post

Cargills Bank, a prominent banking institution in Sri Lanka, has recently fallen victim to a ransomware attack orchestrated by the notorious HUNTERS INTERNATIONAL group. The attackers claim to have compromised the bank’s systems, exfiltrating approximately 1.9 TB of sensitive data. This incident highlights the growing threat of ransomware attacks on financial institutions and underscores the importance of robust cybersecurity measures.

Key Details:

  • Threat Actor: HUNTERS INTERNATIONAL
  • Date Announced: March 20, 2025
  • Compromised Data Size: 1.9 TB

You Should Know:

Ransomware attacks are becoming increasingly sophisticated, targeting critical infrastructure and financial institutions. Below are some practical steps, commands, and codes to help you understand and mitigate such threats.

1. Understanding Ransomware:

Ransomware is a type of malware that encrypts a victim’s data, demanding payment for the decryption key. It often spreads through phishing emails, malicious attachments, or exploiting vulnerabilities in software.

2. Detecting Ransomware on Linux Systems:

Use the following commands to monitor your system for suspicious activities:


<h1>Check for unusual processes</h1>

ps aux | grep -E '(crypt|ransom|encrypt)'

<h1>Monitor network connections</h1>

netstat -tuln | grep -E '(445|3389)' # Common ransomware ports

<h1>Scan for recently modified files</h1>

find / -mtime -1 -type f -exec ls -lh {} \; | grep -E '(.encrypted|.locked)'

3. Preventing Ransomware Attacks: