Black Basta and CACTUS Ransomware Groups Share BackConnect Module: A New Threat Landscape

Listen to this Post

The Black Basta and CACTUS ransomware groups have recently been observed sharing the same BackConnect module, indicating a significant shift in their attack methodologies. This overlap in tactics underscores the need for cybersecurity professionals to remain vigilant against threats that span multiple ransomware families.

Read the full article here: https://lnkd.in/gUQRvkKN

Practice Verified Codes and Commands:

1. Detecting Ransomware Activity on Linux:

sudo grep -i "encrypt" /var/log/syslog
sudo netstat -tuln | grep -E "(445|3389)"

2. Monitoring Network Traffic for Suspicious Activity:

sudo tcpdump -i eth0 -n 'tcp[13] & 7 != 0'
sudo tcpdump -i eth0 -n 'udp and (port 53 or port 123)'

3. Blocking Known Malicious IPs:

sudo iptables -A INPUT -s 192.168.1.100 -j DROP
sudo iptables -L -v -n

4. Scanning for Open Ports:

sudo nmap -sS -O 192.168.1.1/24

5. Checking for Unauthorized User Accounts:

sudo awk -F: '($3 < 1000) {print $1}' /etc/passwd

6. Windows Command to Check for Ransomware Indicators:

wmic process where "name like '%encrypt%'" get name,processid

7. Windows Command to Monitor Network Connections:

netstat -ano | findstr "ESTABLISHED"

8. Windows Command to Check for Suspicious Services:

sc query state= all | findstr "SERVICE_NAME"

What Undercode Say:

The convergence of tactics between Black Basta and CACTUS ransomware groups highlights the evolving nature of cyber threats. Cybersecurity professionals must adapt to these changes by employing a multi-layered defense strategy. This includes regular monitoring of network traffic, timely updates of security patches, and the use of advanced threat detection tools.

On Linux systems, commands like tcpdump, netstat, and `iptables` are invaluable for real-time monitoring and blocking malicious activities. Similarly, on Windows, tools like `wmic` and `netstat` can help identify potential ransomware activities.

Moreover, organizations should consider implementing intrusion detection systems (IDS) and intrusion prevention systems (IPS) to automatically detect and block suspicious activities. Regular security audits and employee training on recognizing phishing attempts and other social engineering tactics are also crucial.

In conclusion, the shared BackConnect module between Black Basta and CACTUS ransomware groups is a stark reminder of the importance of proactive cybersecurity measures. By staying informed and utilizing the right tools and commands, organizations can better protect themselves against these ever-evolving threats.

For further reading on ransomware defense strategies, visit: https://www.cisa.gov/ransomware

References:

Reported By: Thehackernews Black – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification ✅Featured Image