Monday, September 14, 2026
Home Blog Page 2

Hackers Weaponize AI Safety Guardrails to Hide Malware From LLM-Powered Security Scanners

Hackers Weaponize AI Safety Guardrails to Hide Malware From LLM-Powered Security Scanners

Threat actors are adapting malware not only for conventional endpoint defenses and sandboxes, but also for large language model-powered tools increasingly used to triage suspicious code.

ESET researchers linked the activity to Russia-aligned threat actor UAC-0099, which used the method during an attack against an organization in Ukraine.

The group inserted a safety-sensitive, weapon-related request into a comment inside a malicious VBScript file.

Since comments are ignored during normal script execution, the text did not alter the malware’s runtime behavior.

Its intended target was the analysis layer: an LLM that may interpret the embedded text as an instruction rather than inert, attacker-controlled content.

The apparent objective was to trigger a model refusal or otherwise derail the scanner before it inspected the code that followed.

The VBScript was designed to download and install MATCHBOIL, a C#-based loader associated with UAC-0099 that can retrieve follow-on payloads.

Public reporting does not identify a specific affected LLM product, nor does it establish a measured success rate for the technique; the evidence shows the adversarial comment and ESET’s assessment of its intended purpose.

GuardBreaker illustrates a form of indirect prompt injection. In this scenario, the attacker does not send a malicious prompt directly to an AI assistant.

Instead, the hostile instruction is embedded in a file, package, comment, string, or metadata field that an automated security workflow later feeds into an LLM.

The attack exploits a fundamental design challenge in many LLM applications: instructions and untrusted data are handled in the same language-processing context, without a dependable security boundary between them.

OWASP warns that external material, including code comments and documentation, must be treated as untrusted content, sanitized before analysis, and clearly separated from system instructions.

The practical risk is not that a code comment compromises an endpoint by itself. Rather, it can influence the AI component of a detection pipeline.

If a scanner treats an LLM refusal, truncated response, or incomplete analysis as a benign verdict, attackers may gain a blind spot without having to defeat signatures, behavioral detection, or sandbox execution.

ESET Researchers have identified a technique called GuardBreaker, that attempts to exploit AI safety guardrails and prevent an LLM-assisted scanner from reaching the malicious portion of a file.

AI Safety Guardrails

UAC-0099 has a history of targeting Ukrainian government, defense, transportation, and energy-related entities using phishing-led delivery chains.

GuardBreaker’s guardrail-triggering comment (Source : ESET).
GuardBreaker’s guardrail-triggering comment (Source : ESET).

CERT-UA and other researchers have previously documented the group’s use of MATCHBOIL, MATCHWOK, and DRAGSTARE malware families.

MATCHBOIL can profile infected hosts and retrieve additional components from command-and-control infrastructure.

The GuardBreaker discovery aligns with similar techniques observed in malicious open-source packages.

Researchers have found PyPI and npm packages containing fabricated “system” instructions, text telling AI models to classify the package as clean, and excessive repeated strings intended to consume a model’s context window before it reaches the payload.

This creates several opportunities for adversaries. Malicious code can be placed after a large volume of filler text, hidden inside comments described as confidential data, or stored in unusual file formats that automated workflows parse only partially.

AI agents that can invoke unpackers, deobfuscators, repositories, or external tools also introduce additional risk if prompt-injected content can steer those actions.

Organizations should avoid assigning a single LLM the authority to declare a sample safe.

Security teams should correlate AI-assisted analysis with static signatures, sandbox telemetry, EDR signals, reputation data, detonation results, and analyst review.

An LLM can assist analysts by explaining code, clustering artifacts, or prioritizing suspicious behavior, but it should not replace deterministic inspection and human validation.

A resilient workflow should classify every scanned artifact including comments, strings, filenames, package metadata, and embedded documents as untrusted input.

It should preserve strict boundaries between model instructions and sample content, detect encoding and context-flooding attempts, and route incomplete or refused analyses for further inspection.

OWASP specifically recommends structured prompts, input sanitization, output monitoring, least-privilege tool access, and logging of LLM interactions and agent behavior. Most importantly, a refusal is not a clean verdict.

GuardBreaker demonstrates that as defenders add AI to malware-analysis pipelines, attackers will increasingly treat the model itself and its safety controls as another surface to evade.

Learn 7 Metric-Gated AI SOC Deployment Phases – Download Free AI SOC Deployment Playbook 2026.

Critical GitLab Flaws Let Attackers Read Arbitrary Files, Steal Credentials and Execute Code

Critical GitLab Flaws Let Attackers Read Arbitrary Files, Steal Credentials and Execute Code

GitLab has issued an emergency security update to address two critical vulnerabilities that could lead to unauthenticated file disclosure and authenticated credential theft, as well as a high-severity flaw that may enable remote code execution.

The company released updated versions of GitLab Community Edition and Enterprise Edition, specifically versions 19.3.2, 19.2.6, and 19.1.8, on September 10, 2026.

GitLab has urged administrators of self-managed instances to upgrade immediately. The patched release is already in effect for GitLab.com, while GitLab Dedicated customers do not need to take any action.

Critical GitLab Flaws

The most severe issue, tracked as CVE-2026-85706, is a CVSS score of 10.0 path-traversal vulnerability found in the repository commits API.

Under certain conditions, an unauthenticated attacker could exploit improper path confinement and missing authentication enforcement to read arbitrary files from the GitLab server.

This poses a significant risk, particularly for GitLab servers exposed to the internet, because it requires no account or user interaction. Such arbitrary-file read vulnerabilities could potentially expose application configuration, secrets, tokens, private keys, and other sensitive server-side information, depending on file permissions and deployment configuration.

The second critical flaw, CVE-2026-87719, affects GitLab Enterprise Edition instances with Duo Chat access. An authenticated attacker could submit a specially crafted GraphQL subscription argument that bypasses serialization controls, allowing access to server-object lookups and the retrieval of Advanced Search instance configuration data and sensitive credentials. GitLab has assigned this issue a CVSS score of 9.9.

GitLab has also patched CVE-2026-88765, a high-severity buffer overflow vulnerability in the Unicode conversion wrapper used during Advanced Search indexing.

An authenticated GitLab EE user could import a maliciously crafted Git project export, triggering the overflow and potentially achieving remote code execution.

Although this flaw requires authentication and has a high attack complexity, successful exploitation could give an attacker code execution capabilities on a GitLab server.

This outcome is particularly serious for DevOps infrastructure that stores source code, CI/CD secrets, package artifacts, and deployment workflows.

Additional fixes address the exposure of protected CI/CD variables, authorization weaknesses, stored or reflected cross-site scripting vulnerabilities, SAML SSO restriction bypasses, package-registry tampering, and GraphQL denial-of-service attacks.

Affected Versions and Fixes

The critical arbitrary-file read vulnerability affects GitLab CE/EE versions from 18.7 up to the newly released fixed versions. The GraphQL credential-exposure flaw impacts GitLab EE from version 18.3. At the same time, the project-import remote code execution issue affects GitLab EE versions dating back to 12.3.

Administrators should upgrade to the applicable patched version:

  • GitLab 19.3 → 19.3.2
  • GitLab 19.2 → 19.2.6
  • GitLab 19.1 → 19.1.8

Organizations using older affected branches should transition to a supported, patched release as soon as operationally feasible. Security teams should also review GitLab application logs, API activity, project-import events, GraphQL subscription requests, and access to CI/CD variables for suspicious behavior.

CVE Details

CVESeverity / CVSSAffected EditionVulnerability and Security Impact
CVE-2026-85706Critical / 10.0CE/EEUnauthenticated path traversal in repository commits API enables arbitrary-file reads
CVE-2026-87719Critical / 9.9EEInsecure GraphQL subscription deserialization may expose Advanced Search configurations and credentials
CVE-2026-88765High / 8.5EECrafted project export can trigger a Unicode conversion buffer overflow and potential RCE
CVE-2026-79708High / 8.5EEDevelopers may run policy test pipelines and access protected CI/CD variables
CVE-2026-78252High / 8.2CE/EEMarkdown JSON table rendering weakness can induce unintended state-changing requests
CVE-2026-13210High / 7.7CE/EECI/CD environment scope matcher may expose variables outside their intended scope
CVE-2025-14871High / 7.5CE/EEUnauthenticated GraphQL complexity calculation can cause denial of service
CVE-2026-1168High / 7.5CE/EEUnauthenticated GraphQL complexity limiter flaw can cause denial of service
CVE-2024-11222Medium / 6.4CE/EEMerge-request pipeline race condition may permit actions in another user’s commit context
CVE-2026-12910Medium / 5.4CE/EEAuthenticated users may bypass SAML SSO sign-in restrictions
CVE-2026-82837Medium / 5.3CE/EEWorkhorse senddata emitters may expose sensitive credentials or tokens
CVE-2026-19619Medium / 4.7CE/EEContent Editor HTML sanitization issue enables JavaScript execution in a target session
CVE-2026-86341Medium / 4.4EEOwners or Maintainers could disable protected-environment approval requirements
CVE-2026-86340Medium / 4.4EEDeleting the sole approver can bypass protected-environment deployment approvals
CVE-2026-7514Medium / 4.3CE/EEDevelopers may replace Generic Package Registry content and hide packages
CVE-2026-8030Medium / 4.3CE/EENamespace-transfer validation flaw can prevent group-setting modifications
CVE-2026-16794Medium / 4.3EESecurity Managers may execute CI/CD jobs and access protected group-project variables
CVE-2026-3855Low / 3.1CE/EETerraform State API flaw may disclose restricted files or cause denial of service

Keep your SOC up to date on active malware & phishing within 24h of their emergence. Try ANYRUN to prevent incidents with early detection

Hackers Exploit JFrog Artifactory Flaws to Bypass Authentication and Gain Admin Access

Hackers Exploit JFrog Artifactory Flaws to Bypass Authentication and Gain Admin Access

Threat actors are actively exploiting three vulnerabilities in JFrog Artifactory, CVE-2026-42016, CVE-2026-42018, and CVE-2026-82329, to bypass authentication, escalate privileges, and gain administrative control of exposed instances.

Wiz Research reports that multiple attackers are targeting self-hosted Artifactory deployments in the wild, using both a two-bug token escalation chain and a separate critical authentication-bypass flaw.

A successful compromise can expose software artifacts, repository credentials, CI/CD integrations, configuration data, and cluster secrets, creating significant supply chain risks for affected organizations.

Hackers Exploit JFrog Artifactory Flaws

The first attack chain combines CVE-2026-42018, an improper authentication issue, with CVE-2026-42016, a token-scope validation flaw.

CVE-2026-42018 can cause Artifactory to return an internal anonymous-user JWT to an unauthenticated requester, even when anonymous access is disabled. Attackers exploit CVE-2026-42016 to exchange this low-privileged token for an administrator-scoped token.

Observed requests begin with POST /access/api/v1/aws/token/(with a trailing slash) and return HTTP 200 with an anonymous JWT. The attacker then submits this token to POST /access/api/v1/tokens and receives an administrator-scoped credential.

Although the identity may still appear as token:anonymous, it possesses administrative permissions. In some incidents, attackers created a persistent admin user within five minutes of initial access.

The third vulnerability, CVE-2026-82329, offers a more direct route to full compromise. This critical vulnerability affects Artifactory under its default configuration, allowing an unauthenticated, network-based attacker to obtain administrative privileges. Wiz observed attackers triggering this issue via POST /access/api/v1/registry/join, which returned HTTP 201 along with an admin-scoped token.

Post-exploitation activities varied across environments but included creating persistent accounts through PUT /api/security/users/<username>, token minting, user and repository enumeration, configuration theft, and extraction of cluster join keys.

Researchers also identified malicious Groovy plugins deployed through Artifactory’s native plugin framework that enabled arbitrary server-side command execution.

In other cases, attackers used droppers to download Rust-based backdoors to writable locations such as /tmp, /var/tmp, and /dev/shm, and then established command-and-control communications.

Administrators should urgently upgrade vulnerable instances. JFrog’s remediated releases include versions 7.111.21, 7.117.28, 7.125.20, 7.133.29, 7.146.38, and 7.161.20 or later, depending on the deployed release branch. Version 7.133.11 and later fixes CVE-2026-42016.

Defenders should prioritize internet-exposed Artifactory servers, limit access to trusted networks, and review logs for suspicious token issuance, anonymous identity activity, registry join requests, newly created administrative users, plugin deployments, and configuration-access events.

Correlate any successful requests to the vulnerable endpoints with follow-on account creation, token enumeration, or payload delivery activities.

Affected Versions

CVEVulnerabilityAffected versionsFixed versions
CVE-2026-82329Authentication bypassPrior to 7.111.21; 7.117.0–7.117.27; 7.125.0–7.125.19; 7.133.0–7.133.28; 7.146.0–7.146.37; 7.161.0–7.161.197.111.21, 7.117.28, 7.125.20, 7.133.29, 7.146.38, 7.161.20
CVE-2026-42018Anonymous token exposurePrior to 7.111.20; 7.117.0–7.117.27; 7.125.0–7.125.19; 7.133.0–7.133.28; 7.146.0–7.146.87.111.20, 7.117.28, 7.125.20, 7.133.29, 7.146.9
CVE-2026-42016Privilege escalationPrior to 7.133.117.133.11 and later

Ioc

IndicatorDescriptionFirst seenLast seen
93.104.155[.]133Actor IP exploiting CVE-2026-42018/CVE-2026-420162026-08-282026-09-07
149.102.229[.]150Actor IP exploiting CVE-2026-42018/CVE-2026-420162026-08-302026-08-30
186.247.79[.]240Actor IP exploiting CVE-2026-420182026-09-022026-09-02
182.62.201[.]69Actor IP exploiting CVE-2026-420182026-09-042026-09-04
146.19.216[.]120Actor IP exploiting CVE-2026-823292026-09-012026-09-01
185.190.58[.]172Actor IP exploiting CVE-2026-823292026-09-032026-09-03
45.61.176[.]88Actor IP exploiting CVE-2026-823292026-09-022026-09-04
223.144.227[.]110Actor IP exploiting CVE-2026-823292026-09-042026-09-04
129.121.56[.]234Actor IP exploiting CVE-2026-823292026-09-042026-09-04
16.54.250[.]190Actor IP exploiting CVE-2026-823292026-09-042026-09-04
105.188.75[.]16Actor IP exploiting CVE-2026-823292026-09-032026-09-03
103.124.165[.]42Actor IP exploiting CVE-2026-823292026-09-032026-09-03
176.88.121[.]152Actor IP exploiting CVE-2026-823292026-09-032026-09-03
155.254.120[.]23Actor IP exploiting CVE-2026-823292026-09-022026-09-02
220.246.124[.]92Actor IP exploiting CVE-2026-823292026-09-062026-09-07
15.157.64[.]113Actor IP exploiting CVE-2026-823292026-09-042026-09-04
104.28.251[.]139Actor IP exploiting CVE-2026-823292026-09-042026-09-04
137.184.111[.]69Actor IP exploiting CVE-2026-823292026-09-02Not provided
hxxp://log.gitclone[.]org:45678/smtpPayload download URL following CVE-2026-42018/CVE-2026-42016 exploitation2026-09-062026-09-08
hxxp://3.88.162[.]79:36789/smtpSecond-stage payload download URL2026-09-072026-09-08
513a907b69edffc3cb77a494da395178d21ef9bdSHA-1 hash of /tmp/.z payload2026-09-062026-09-08
64.207.232[.]6:8443Command-and-control address2026-09-082026-09-08
svc_[a-zA-Z0-9]{8}Suspicious attacker-created account pattern
Nxploited_[a-zA-Z0-9]{3}Suspicious attacker-created account pattern
labadmin_[a-zA-Z0-9]{10}Suspicious attacker-created account pattern
jfrog-distributionMalicious administrator account
backup-serviceMalicious administrator account
repo-serviceMalicious administrator account
jfrog-insightMalicious administrator account
jfrog-mission-controlMalicious administrator account
jfrog-pipelineMalicious administrator account
migration-toolMalicious administrator account
ldap_adminMalicious administrator account
ldap_administratorMalicious administrator account
0xterrorMalicious administrator account

Note: IP addresses and domains are intentionally defanged (e.g., [.]) to prevent accidental resolution or hyperlinking. Re-fang only within controlled threat intelligence platforms such as MISP, VirusTotal, or your SIEM.

Keep your SOC up to date on active malware & phishing within 24h of their emergence. Try ANYRUN to prevent incidents with early detection

Okta Patches Auth0 and Access Gateway Vulnerabilities Let Attackers Enable XSS, Authentication Bypass and SQL Injection

Okta Patches Auth0 and Access Gateway Vulnerabilities Let Attackers Enable XSS, Authentication Bypass and SQL Injection

Okta has released security updates for three high-severity vulnerabilities affecting the Auth0 AD/LDAP Connector and Okta Access Gateway.

These vulnerabilities could allow authenticated attackers to trigger stored cross-site scripting (XSS), bypass Protected Rule authorization controls, or execute unintended SQL commands against configured backend databases under specific deployment conditions.

All three vulnerabilities were disclosed on September 8, 2026. Organizations using the affected Auth0 connector or Okta Access Gateway should prioritize upgrading, especially if they use directory attributes, Protected Rules, or custom SQL-backed advanced datastores.

Critical Stored XSS in Auth0 Connector

The most severe issue, tracked as CVE-2026-85982, affects the Auth0 AD/LDAP Connector versions before 8.0.0. Okta has assigned this vulnerability a CVSS v3 score of 9.0, categorizing it as critical.

This flaw is a stored cross-site scripting vulnerability caused by improper HTML encoding of data rendered in search results and updater logs within the Auth0 AD/LDAP Connector Admin Panel. It is classified as CWE-79, Improper Neutralization of Input During Web Page Generation.

An attacker with authenticated access to a connected user directory and permission to modify user-editable directory attributes could inject malicious script content into those fields. Alternatively, a low-privileged local user on the system hosting the connector could introduce malicious content into the updater log data.

The payload executes when an administrator opens affected directory search results or update logs in the connector’s administrative interface. Successful exploitation could enable session theft, unauthorized administrative actions via the victim’s browser, interface manipulation, or access to sensitive data visible to the administrator.

Okta recommends upgrading the auth0/ad-ldap-connector package to version 8.0.0 or later to remediate CVE-2026-85982.

Okta has also addressed CVE-2026-78626, an authorization-bypass issue in Okta Access Gateway versions before 2026.9.1. This vulnerability has a CVSS v3 score of 8.1 and is categorized as CWE-863, which denotes Incorrect Authorization.

This flaw arises from improper input sanitization and regular expression evaluation in the product’s Protected Rule authorization check. Protected Rules enforce access restrictions on specified application resources.

Exploitation of this vulnerability requires that an administrator has configured a Protected Rule policy for one or more resources, and the attacker must have a valid authenticated account assigned to the target application.

According to Okta, an attacker at any application privilege level may be able to bypass the configured authorization control.

This issue is particularly concerning for organizations using Access Gateway to enforce granular, resource-level protections for legacy or on-premises applications.

Administrators should review whether Protected Rules protect sensitive paths, administrative panels, or high-value application functions and then update affected gateways to version 2026.9.1 or later.

The third flaw, CVE-2026-78623, is an SQL injection vulnerability in the advanced-mode datastore configuration of Okta Access Gateway. It carries a CVSS v3 score of 7.7 and maps to CWE-89, which represents Improper Neutralization of Special Elements used in an SQL Command.

The issue arises because Access Gateway does not sanitize SAML assertion values before inserting them into custom database query strings. Although the query is prepared afterward, attacker-controlled assertion values are interpolated before that preparation, potentially allowing unintended SQL execution against the configured backend database.

To exploit this vulnerability, an advanced-mode database datastore with custom SQL queries referencing SAML assertion attributes is required. The attacker must also have an active authentication session with controllable values for at least one referenced assertion attribute.

Organizations should upgrade Access Gateway appliances to version 2026.9.1 or later. Security teams should also audit custom SQL datastore queries, identify SAML attributes used as query inputs, and restrict assertion values to tightly validated formats wherever possible.

Keep your SOC up to date on active malware & phishing within 24h of their emergence. Try ANYRUN to prevent incidents with early detection

New IoT Malware Uses Public Linux Exploits to Gain Root and Launch DDoS Attacks

New IoT Malware Uses Public Linux Exploits to Gain Root and Launch DDoS Attacks

A newly observed IoT malware family dubbed KATARU targets internet-exposed devices through Telnet credential brute-forcing, then attempts to gain root privileges with publicly available Linux kernel exploits before enrolling compromised systems in a DDoS botnet.

The sample combines familiar Mirai-style flooding functions with encrypted command-and-control, broad persistence logic, anti-analysis checks and decoy network activity designed to complicate incident response.

Following successful access, the operator used BusyBox commands to download and execute an ARM payload named vlxx.arm, with SHA-256 hash 13382c16e2401b07451577b46e634b8031ec254d98b876e59692b5fa22abc1d4.

Staging markers including condi72 and condixx link the delivery flow to a basic loader believed to be related to previously public dropper code.

KATARU’s defining feature is its attempt to turn initial, low-privilege access into full root control.

The malware first checks whether /etc/passwd is writable; if it is, KATARU modifies the root:x: entry to root::, potentially allowing passwordless use of su.

If that shortcut fails, it attempts multiple Linux local privilege-escalation exploits derived from public proof-of-concept code.

These include CVE-2026-46300, known as Fragnesia, which affects Linux kernel XFRM ESP-in-TCP processing and can enable a local attacker to modify page-cache-backed read-only files and escalate privileges.

The malware also embeds code associated with the Dirty Frag vulnerabilities, including CVE-2026-43284, and the Copy Fail flaw, CVE-2026-31431.

Both vulnerability families have been documented as local root-escalation risks affecting Linux kernel networking or cryptographic subsystems.

However, analysis shows that the ARM KATARU binary contains x86-oriented shellcode within its privilege-escalation routines.

That mismatch strongly indicates the authors copied exploit material without adequately porting or testing it for the device architecture.


Decompilation of exploit code found in the sample (Source : Nozomi).
Decompilation of exploit code found in the sample (Source : Nozomi).

The flaw does not make the malware harmless: attackers can still succeed against misconfigured systems or selectively deploy working variants for target hardware.

After execution, KATARU discovers its running path through /proc/self/exe and copies itself into candidate filesystem locations.

Where privileges permit, it can alter file attributes, overwrite targets and apply immutable or append-only flags to impede removal.

Its persistence coverage is unusually expansive. The malware attempts to abuse systemd services, timers, generators and path units; cron jobs and @reboot; rc.local; SysV init files; shell profiles.

Nozomi said in a report shared with GBhackers, the malware was identified after a honeypot received brute-force Telnet activity from an IP address in Vietnam.

IoT Malware Attack

OpenWrt hotplug and procd mechanisms; U-Boot and NVRAM hooks; DHCP, udev and package-manager scripts; alternative init frameworks including OpenRC, runit, s6 and dinit; and XDG desktop autostart locations.

It also contains Android-oriented logic, checking boot-script locations associated with rooted Android systems and attempting to create an init service launched after boot completion.

This “try everything” persistence model gives the botnet opportunities to survive reboot on routers, embedded Linux devices, industrial appliances, Linux hosts and potentially modified Android endpoints.

KATARU departs from the plain-text communications common in older Mirai derivatives.

It uses an X25519 key exchange and ChaCha20-Poly1305 encrypted, authenticated message frames to communicate with its command-and-control infrastructure.

The design can make passive traffic inspection and C2 impersonation more difficult.


Disassembly of speed test function (Source : Nozomi).
Disassembly of speed test function (Source : Nozomi).

A notable implementation error is that its embedded pinned X25519 public key matches Alice’s public key from the RFC 7748 test vectors an artifact consistent with copied reference code rather than production-grade cryptographic key management.

Once controlled, infected devices can launch TCP, UDP, ICMP, HTTP, QUIC and DNS floods.

KATARU also includes attacks aimed at Minecraft, FiveM, OpenVPN and WireGuard services, along with an SSH brute-force function using embedded credentials.

C2 operators can additionally order bots to download and run second-stage payloads, execute shell commands, conduct UDP throughput tests, stop active attacks or remove the malware and its persistence artifacts.

The malware includes anti-debugging checks for ptrace, TracerPid, LD_PRELOAD, Valgrind, radare2-related environment variables and analyst tool process names.

It also uses a timing check intended to detect debugging or instrumented execution.

KATARU further emits fake beacon traffic, synthetic HTTP requests, misleading JWT data, decoy hostnames, IRC-style chatter and junk UDP packets.

Some decoy destinations use RFC documentation address ranges, while others point to legitimate third-party infrastructure.

Analysts should therefore avoid treating every hostname, IP address or string embedded in the binary as a confirmed indicator of compromise.

Organizations should disable Telnet wherever possible, eliminate default credentials, restrict device administration to segmented management networks or VPNs, and patch supported device firmware and Linux kernels.

The Fragnesia, Dirty Frag and Copy Fail issues demonstrate why low-privilege footholds can become root-level compromise on vulnerable systems.access.

Defenders should also monitor for unauthorized systemd units, cron jobs, altered boot scripts, OpenWrt hooks, unexpected immutable files, unusual outbound encrypted connections and sudden high-volume traffic from IoT assets.

KATARU shows how rapidly commodity botnets can combine public exploits, copied code and AI-assisted development into a disruptive threat even when their implementation remains noisy and imperfect.

IOCs

Indicator TypeValue
SHA-256 Hash (Loader)cc76bc218627279ecb4d0ce74ad2651e9db9e3e843e35d6569576e056e3a9218
SHA-256 Hash (ARM32)13382c16e2401b07451577b46e634b8031ec254d98b876e59692b5fa22abc1d4
SHA-256 Hash (ARM32)6fbae3505ae0d638b820165c572d548ce92dda71e82dc47e8efe13f30617f35f
SHA-256 Hash (ARM32)9d87e6615c810907443ebd5e915f3b35099c3b5c6b6c684637138a7f8ec9cebc
SHA-256 Hash (AMD64)9d7cd4948a1fcbaeadc425752fce9a933bd6fc41eeede030dffd7b99b3bc51d5
IPv4 Address160[.]191.242.92 Telnet credential brute-force activity and command-and-control (C2)

Note: IP addresses and domains are intentionally defanged (e.g., [.]) to prevent accidental resolution or hyperlinking. Re-fang only within controlled threat intelligence platforms such as MISP, VirusTotal, or your SIEM.

Learn 7 Metric-Gated AI SOC Deployment Phases – Download Free AI SOC Deployment Playbook 2026.

CISA Urges Service Providers to Provide Transparent Updates During Major IT and OT Outages

CISA Urges Service Providers to Provide Transparent Updates During Major IT and OT Outages

The U.S. Cybersecurity and Infrastructure Security Agency (CISA) has released new guidance urging service providers to deliver timely, accurate, and transparent communications during major information technology (IT) and operational technology (OT) outages.

The document, titled ‘Communicating Under Pressure: Best Practices for Service Providers’, was developed with the Federal Bureau of Investigation (FBI) and international partners.

It explains how organizations should communicate during disruptions caused by cyberattacks, equipment failures, human error, natural hazards, or defensive isolation measures that interrupt critical services.

Service Providers to Provide Transparent Updates

CISA has warned that outages affecting telecommunications, cloud platforms, managed service providers, industrial systems, transportation networks, energy operations, and water utilities can quickly extend beyond the initially impacted organization.

A disruption in one service can lead to broader failures across interconnected suppliers, customers, government entities, and critical infrastructure operators. In such situations, incomplete messaging or prolonged periods without updates can fuel speculation, misinformation, operational confusion, and public anxiety.

The guidance emphasizes that organizations should not wait for an outage to decide who will communicate, which channels will be used, or how technical details will be verified.

Instead, providers should establish crisis communication procedures in advance and include communications personnel in incident-response planning, tabletop exercises, recovery operations, and executive decision-making.

CISA states that effective outage communications must balance transparency with legal obligations, law enforcement coordination, operational security, and containment efforts.

Service providers may not be able to disclose every technical detail during an active incident, especially if adversaries remain in the environment or if disclosure could reveal defensive measures.

However, organizations should still provide stakeholders with clear information about what is known, what remains under investigation, which services are affected, and what actions users should take.

Initial notifications should avoid unsupported attribution claims or speculative root-cause assessments. Instead, providers should acknowledge the disruption, identify affected service categories or geographic regions (if possible), describe immediate mitigation activities, and provide an expected timeframe for the next update.

For instance, a provider could state that a service interruption is affecting customer authentication or remote monitoring capabilities, confirm that investigation and restoration teams are engaged, advise customers on available workarounds, and commit to another update within a specific timeframe.

The advisory also notes that conventional communication systems may be unavailable during a major cyber incident. Organizations should assume that email, collaboration platforms, customer portals, voice services, and internet connectivity could be degraded or inaccessible.

Therefore, critical infrastructure owners and operators should maintain alternative communication mechanisms, including emergency phone trees, satellite communications, secure out-of-band messaging platforms, pre-established public status pages, radio systems, and contact lists maintained outside the production environment.

These communication channels should be tested regularly and integrated into business continuity and incident-response exercises. Providers should also ensure that communications teams can access approved messaging templates, legal contacts, executive escalation procedures, and technical status data without relying on compromised systems.

The guidance aligns with CISA’s CI Fortify initiative, which helps critical infrastructure organizations prepare to isolate and recover vital operational technology during major cyber incidents.

Isolation may be necessary to prevent attackers from moving between IT and OT environments. However, it can also impact visibility, remote access, automation, and customer-facing services.

CISA emphasizes that transparent, ongoing communications can help end users minimize operational disruption, reduce uncertainty, and preserve trust. For service providers supporting critical infrastructure, outage messaging should be treated as a core resilience capability, rather than merely a public-relations function.

Keep your SOC up to date on active malware & phishing within 24h of their emergence. Try ANYRUN to prevent incidents with early detection

Hackers Use AI-Assisted CEO Emails to Trick Finance Teams Into Sending $50,000 Payments.

Hackers Use AI-Assisted CEO Emails to Trick Finance Teams Into Sending ,000 Payments.

Threat actors are using AI-assisted phishing templates, executive impersonation, fake ServiceNow invoices, and fabricated email threads to pressure finance teams into authorizing fraudulent ACH payments worth nearly $50,000.

Microsoft detected more than one million messages in the campaign, demonstrating how business email compromise (BEC) operations are becoming more polished, scalable, and difficult to spot.

The United States received 87.7% of the campaign volume, indicating a broad effort to target organizations with U.S.-based finance and accounts-payable operations.

The operation centered on executive impersonation. Attackers posed as CEOs, CFOs, and company presidents from the victim organizations themselves, using executive names in the sender display name, reply-to display name, signature block, and embedded email conversation.

The messages sought to make accounts-payable personnel believe that a senior executive had already approved an urgent invoice and expected the recipient to process the transaction.

Rather than relying on a simple payment request, the operators built a multi-layered social-engineering narrative.

The spoofed CEO email included a detailed “ServiceNow Platform Annual Subscription” invoice, complete with ServiceNow-themed branding, logos, line items, invoice metadata, payment instructions, and organization-specific details in the “Billed To” field.

However, the payment destination was a bank account controlled by the threat actor. Microsoft noted that the actor used multiple financial institutions across samples, suggesting that payment details could change by target.

The emails also contained fabricated forwarded correspondence between the impersonated executive and a purported ServiceNow president.

The staged discussion described the alleged subscription purchase, implementation process, and handling of the invoice.

This additional content was intended to preempt questions from finance employees and create the impression that the transaction had already been discussed and approved at the executive level.

Attack chain showing domain registration, executive impersonation, invoice fraud delivery (Source : Microsoft).
 Attack chain showing domain registration, executive impersonation, invoice fraud delivery (Source : Microsoft).

Microsoft stressed that ServiceNow and other legitimate organizations referenced in the messages were not compromised or involved.

Microsoft observed the campaign AI-assisted phishing, between August 3 and 5, when attackers used multiple third-party email delivery service accounts to distribute the fraud emails to enterprise users.

AI-assisted Phishing

The campaign instead relied on attacker-controlled infrastructure, fraudulent content, and lookalike domains designed to resemble trusted brands.

 Industry distribution of targeted enterprises of this campaign with ‘IT services & business advisory’ along with ‘Consumer goods’ and others (Source : Microsoft).
 Industry distribution of targeted enterprises of this campaign with ‘IT services & business advisory’ along with ‘Consumer goods’ and others (Source : Microsoft).

One domain, service-nowinc[.]com, was registered on July 31, shortly before the phishing activity began. Attackers used it to impersonate a ServiceNow executive and embedded it in the fake invoice as a contact address.

Another domain, domainlify[.]net, was used in Reply-To fields. The short preparation period between domain registration and mass delivery reflects the speed with which BEC actors can operationalize new phishing infrastructure.

Microsoft found several signs consistent with AI-assisted template creation, including verbose HTML comments, structured section labels, unusually uniform formatting, and heavily commented CSS and layout elements.

The templates also used stylistic patterns such as em dashes and banner-style separators.

Account information linked with email of impersonated domain (Source : Microsoft).
Account information linked with email of impersonated domain (Source : Microsoft).

These artifacts do not prove that generative AI authored every message or invoice.

However, they suggest that attackers may be using AI to accelerate the production of polished, reusable email templates while dynamically swapping victim-specific names, companies, and executive identities.

Microsoft observed that invoice identifiers and narrative structures were broadly consistent across samples, while organization-specific data changed from target to target.

For defenders, the key warning is that email quality is no longer a dependable security signal.

Well-written language, professional branding, and a plausible executive tone should not substitute for payment verification.

The embedded “forwarded” conversation contained several inconsistencies that can help identify the fraud. The supposed forwarded messages lacked the normal header data expected in genuine email chains.

Their formatting was also inconsistent with standard threaded email presentation, with prior messages left-aligned rather than visibly grouped or indented.

Other warning signs included display names that did not match the underlying sender address, financial lure terms such as “due bill” and “ACH Payment,” and contradictory instructions.

In one message, the impersonated CEO reportedly directed staff not to copy them on the invoice exchange; later, the same narrative suggested the CEO had directly sent and approved the invoice.

Organizations should treat executive-originated payment requests, new vendor banking instructions, and urgent invoice approvals as high-risk events.

Finance teams should independently confirm requests using a previously verified phone number, approved vendor portal, or established internal escalation channel not contact details included in the suspicious email.

Microsoft recommends configuring email authentication controls including SPF, DKIM, and DMARC; strengthening anti-phishing and spoof-protection policies; and reviewing third-party mail-flow connectors that could affect message filtering.

Organizations using Microsoft 365 should also enable Zero-hour Auto Purge, which can retroactively quarantine malicious emails after delivery as new threat intelligence becomes available.

Automatic attack disruption in Microsoft Defender access can further help contain active attacks and provide security teams time to investigate affected accounts and indicators.

The campaign shows that modern BEC is evolving from isolated spoofed messages into full fraud narratives.

AI-assisted content may make those narratives more convincing, but strict out-of-band verification remains the most important control separating a suspicious email from a $50,000 loss.

Indicators of compromise

IndicatorTypeDescription
service-nowinc[.]comDomainDomain impersonating ServiceNow
gomez@service-nowinc[.]comEmail addressEmail address associated with bank account
notifications@uinsure[.]co[.]uk info@tivityhealth[.]com no-reply@lumalisboa[.]com noreply@mctci[.]com info@nuf[.]co[.]jp info@lohnsteuerhilfe-aktuell-verein[.]de info@tovimbatista[.]pt contact@eemusicclass[.]co[.]uk info@lifeones[.]comEmail addressSender email address used to send out emails

Note: IP addresses and domains are intentionally defanged (e.g., [.]) to prevent accidental resolution or hyperlinking. Re-fang only within controlled threat intelligence platforms such as MISP, VirusTotal, or your SIEM.

Learn 7 Metric-Gated AI SOC Deployment Phases – Download Free AI SOC Deployment Playbook 2026.

12 Best Server Security Solutions Compared (2026): Features & Pricing

12 Best Server Security Solutions Compared (2026): Features & Pricing
Best Server Security Solutions Compared

Quick Answer: CrowdStrike and SentinelOne lead server EDR; Trend Micro Deep Security owns virtual patching for unpatchable estates; Microsoft Defender for Servers is the per-resource anchor for Azure/hybrid; Bitdefender and ESET deliver efficacy at value. Server pricing runs per server/workload always confirm Linux feature parity.

Servers are where ransomware crews head after the first phish: file shares, databases, hypervisors, and backups.

Protecting them differs fundamentally from laptops long-lived Linux workloads, change-controlled maintenance windows, strict performance budgets, and hybrid estates spanning on-premises data centers and cloud infrastructure requiring a layered security software defense strategy.

We scored twelve server security solutions on five weighted criteria, with per-tool depth on features, pricing model, strengths, and gaps including where a suite’s real value depends on the ecosystem around it. Editorial assessment, not a lab test; pricing by model only.

Table of Contents

1. How We Evaluated

2. The Scorecard

3. The 12 Solutions in Depth

4. Full Comparison Table

5. Buyer’s Guide

6. FAQ

How We Evaluated

Five weighted criteria: Detection & response depth (25%); Linux/cross-platform parity (25%) real feature equality, not checkbox support; Workload controls (20%) virtual patching, integrity monitoring, app control; Hybrid/cloud coverage (15%); Value & pricing clarity (15%).

The Scorecard

SolutionDetectionLinux parityWorkload controlsHybrid/cloudValueWeightedPricing model
CrowdStrike554534.55Per server/module
SentinelOne554434.40Per server/tier
Trend Micro (Deep Security)455544.60Per workload/credits
Microsoft Defender for Servers445544.40Per resource (plans)
Sophos444444.00Per server
Bitdefender544454.50Per server (published)
Palo Alto Networks444534.05Credits/quote
Trellix444433.85Quote
Cisco443433.70Per endpoint/tier
Fortinet444444.00Bundle/quote
Uptycs454444.25Per asset/quote
Kaspersky444333.65Suite (jurisdiction-limited)

The 12 Solutions in Depth

1. CrowdStrike (Falcon for Servers / Cloud Security)

CrowdStrike (Falcon for Servers / Cloud Security)
CrowdStrike (Falcon for Servers / Cloud Security)

Description. Falcon extends benchmark EDR to Windows and Linux servers and cloud workloads with a single lightweight agent delivering behavioral IOAs, OverWatch hunting, and threat intelligence tools across hybrid infrastructure.

Key features: Server EDR (Win/Linux); container/K8s protection; OverWatch hunting; cloud workload modules; single agent/console.

Pricing model: Per server, modular.

Best for: Mid–enterprise standardizing endpoint + server + cloud on one platform.

Pros: Elite detection + hunting; true Linux parity.

Cons: Premium; modules accumulate cost.

2. Palo Alto Networks (Cortex/Prisma)

Palo Alto Networks (Cortex/Prisma)
Palo Alto Networks (Cortex/Prisma)

Description. Palo Alto covers servers through Cortex XDR agents and Prisma Cloud workload protection strongest where server defense converges with network inspection and Web Application Firewalls (WAF).

Key features: Cortex XDR server agents; Prisma Cloud CWPP (hosts/containers/serverless); network+endpoint analytics; virtual patching via IPS lineage.

Pricing model: Credits/quote.

Best for: Palo Alto-standardized enterprises unifying XDR + CNAPP.

Pros: Breadth; strong analytics; CNAPP integration.

Cons: Complexity and credit modeling; ecosystem-dependent value.

3. Trend Micro (Deep Security / Cloud One Workload)

Trend Micro (Deep Security / Cloud One Workload)
Trend Micro (Deep Security / Cloud One Workload)

Description. The hybrid-server workhorse: anti-malware, host IPS with virtual patching, integrity monitoring, log inspection, and app control integrating with automated patch management software to shield unpatched Windows 2008/2012 and legacy RHEL systems.

Key features: Virtual patching (host IPS); FIM + log inspection; anti-malware/behavioral; container/serverless coverage; hybrid + multicloud.

Pricing model: Per workload/credits (published cloud pricing).

Best for: Hybrid estates with unpatchable or slow-cycle servers.

Pros: Virtual patching buys time; control breadth.

Cons: Console/administration weight; EDR depth trails CS/S1.

4. Uptycs

Uptycs
Uptycs

Description. Uptycs unifies server security with endpoint telemetry using an osquery data model tracking behavioral transitions across the SOC defense attack chain for Linux-heavy fleets, containers, and developer workstations.

Key features: osquery-powered telemetry; Linux-first depth; container/K8s security; CSPM+CWPP; detection/compliance from one data lake.

Pricing model: Per asset/quote.

Best for: Linux-heavy, engineering-led estates consolidating laptop-to-cloud.

Pros: Deep Linux visibility; unified data model.

Cons: Smaller ecosystem; SOC workflows less turnkey than majors.

5. Sophos (Intercept X for Server)

Sophos (Intercept X for Server)
Sophos (Intercept X for Server)

Description. Intercept X for Server brings CryptoGuard anti-ransomware, exploit prevention, and server lockdown (FIM) to Windows and Linux, built upon proven business antivirus and endpoint engines with optional MDR support.

Key features: Server EDR; CryptoGuard rollback; exploit prevention; cloud workload visibility; MDR option.

Pricing model: Per server.

Best for: SMB–mid estates wanting managed-friendly server protection.

Pros: Anti-ransomware strength; MDR pairing.

Cons: Deep-enterprise workload controls lighter than Trend/Defender.

6. Cisco (Secure Endpoint / Workload)

Cisco (Secure Endpoint / Workload)
Cisco (Secure Endpoint / Workload)

Description. Cisco protects servers via Secure Endpoint with Talos intelligence and Secure Workload microsegmentation, easily verified and mapped using network security and packet inspection tools.

Key features: Server endpoint protection; Talos intel; Secure Workload segmentation (separate); SecureX/XDR orchestration.

Pricing model: Per endpoint/tier.

Best for: Cisco-fabric enterprises tying servers into network security.

Pros: Talos + fabric integration.

Cons: Workload-control depth split across products; ecosystem-dependent.

7. Microsoft Defender for Servers

Microsoft Defender for Servers
Microsoft Defender for Servers

Description. Defender for Cloud’s server plans deliver EDR, vulnerability management, FIM, adaptive application control, and native capabilities to automatically isolate compromised server instances across Azure and hybrid Arc environments.

Key features: Server EDR; vulnerability assessment; FIM/adaptive app control; JIT VM access; Arc-based hybrid reach; per-resource P1/P2 plans.

Pricing model: Per server/month (published plans).

Best for: Azure-centric and Arc-managed hybrid estates.

Pros: Native + published pricing; strong workload controls.

Cons: Best inside Azure/Arc; multicloud parity trails CNAPP leaders.

8. Fortinet (FortiEDR / Security Fabric)

Fortinet (FortiEDR / Security Fabric)
Fortinet (FortiEDR / Security Fabric)

Description. FortiEDR provides pre- and post-infection protection for servers with automated playbooks, deflecting attacks targeting critical remote server vulnerabilities and exploits through Security Fabric automation.

Key features: Kernel-level pre/post-infection defense; automated response playbooks; virtual patching via fabric IPS; FortiGate/fabric integration.

Pricing model: Bundle/quote.

Best for: Fortinet shops consolidating server + network response.

Pros: Fabric automation; solid protection economics.

Cons: Standalone appeal limited; console split across Forti-products.

9. SentinelOne (Singularity for Servers/Cloud)

SentinelOne (Singularity for Servers/Cloud)
SentinelOne (Singularity for Servers/Cloud)

Description. Autonomous server protection with strong Linux and Kubernetes agents delivering real-time containment and autonomous endpoint detection and response (EDR) for 24/7 unmonitored server rooms.

Key features: Server EDR (Win/Linux/K8s); autonomous response; Windows rollback; cloud workload security; one console.

Pricing model: Per server/tier.

Best for: Teams wanting automation-first server defense.

Pros: Autonomy; Linux/K8s strength.

Cons: Rollback Windows-only; premium tiers.

10. Kaspersky (Hybrid Cloud Security)

Kaspersky (Hybrid Cloud Security)
Kaspersky (Hybrid Cloud Security)

Description. Technically capable server and hybrid workload protection with deep legacy-OS support, offering detection depth comparable to free antivirus and scanning utilities where legally permissible.

Key features: Server anti-malware/EDR; container security; hardening controls; hybrid coverage.

Pricing model: Suite/quote.

Best for: Only where jurisdictionally permitted.

Pros: Capable tech.

Cons: U.S. prohibition; check local guidance first.

11. Bitdefender (GravityZone for Servers)

Bitdefender (GravityZone for Servers)
Bitdefender (GravityZone for Servers)

Description. Top-tier independent-test efficacy at value pricing, utilizing low-overhead agents tuned for virtualized estates (SVE) evaluated in antivirus and malware protection benchmarks.

Key features: Server EDR; anti-ransomware with restore; VDI/virtualization-optimized agents; risk analytics; published pricing.

Pricing model: Per server, published tiers.

Best for: SMB–mid virtualized estates optimizing efficacy-per-dollar.

Pros: Efficacy + value; virtualization tuning.

Cons: Enterprise services/hunting depth trail CS/S1.

12. Trellix (Endpoint Security for Servers)

Trellix (Endpoint Security for Servers)
Trellix (Endpoint Security for Servers)

Description. Trellix protects servers via ePO-managed endpoint security with deep application and change control heritage (Solidcore lineage), streaming telemetry into enterprise SIEM tools.

Key features: Server protection; application/change control; FIM heritage; ePO central policy; XDR ecosystem.

Pricing model: Quote.

Best for: ePO enterprises with regulated server fleets.

Pros: Change-control lineage; central ePO.

Cons: Ecosystem-dependent; modernization ongoing.

Full Comparison Table

SolutionLinux parityVirtual patchingFIM/app controlManaged optionPricing
CrowdStrikeFullLimitedPartialOverWatchPer server/module
Palo AltoFullVia IPSPartialYesCredits
Trend MicroFullYesYesYesPer workload
UptycsFullNoYes (FIM)NoPer asset
SophosGoodNoPartialMDRPer server
CiscoGoodVia fabricPartialYesPer endpoint
Defender for ServersGoodVia postureYesDefender ExpertsPublished per-server
FortinetGoodVia fabric IPSPartialYesBundle
SentinelOneFullNoPartialVigilancePer server
KasperskyGoodPartialYesYesJurisdiction-limited
BitdefenderGoodNoPartialMDRPublished per-server
TrellixGoodNoYesYesQuote

Buyer’s Guide

Audit host configurations: Regularly execute a web server penetration testing checklist to identify exposed services, weak cipher suites, and misconfigured permissions before deploying runtime agents.

Match to your estate’s hardest problem. Unpatchable/legacy servers → Trend Micro’s virtual patching is the difference-maker. Azure/hybrid via Arc → Defender for Servers’ published per-server plans are the economic anchor.

Linux-heavy engineering estates → CrowdStrike, SentinelOne, or Uptycs for real parity. Value consolidation on virtualized fleets → Bitdefender.

Fabric shops → Fortinet/Cisco leverage existing network response. Regulated change-frozen fleets → Trellix change control.

Pricing reality: per-server/month or per-workload dominates (Microsoft and Bitdefender publish figures); platform vendors quote via modules/credits.

Key takeaways: verify Linux feature parity line-by-line (rollback, FIM, response actions often differ); demand performance data on your hypervisor density; and treat file servers, hypervisors, and backup servers as the crown-jewel tier deserving the deepest controls.

FAQ

What is the best server security solution in 2026?

CrowdStrike and SentinelOne lead server EDR; Trend Micro Deep Security leads workload controls and virtual patching; Defender for Servers anchors Azure/hybrid economics; Bitdefender leads value. The best pick depends on Linux share, patchability, and ecosystem.

How is server security priced?

Per server (or workload) per month/year is standard Microsoft and Bitdefender publish rates; CrowdStrike/SentinelOne tier per server with modules; Trend Micro prices per workload/credits; fabric vendors bundle. Servers cost more than desktop endpoints model them separately.

What is virtual patching and who needs it?

Host-level IPS that blocks exploitation of known CVEs before the OS/app is patched essential for legacy, vendor-locked, or change-frozen servers. Trend Micro Deep Security is the reference; Fortinet/Palo Alto deliver variants via IPS.

Is Linux protection really equal to Windows?

Rarely by default: response actions, rollback, and controls often differ. CrowdStrike, SentinelOne, and Uptycs are strongest on parity but verify each capability per OS in a POC.

Do I need EDR and workload controls on servers?

Yes EDR detects and responds; workload controls (FIM, app control, virtual patching) harden and satisfy compliance (PCI FIM requirements, change control). Trend, Defender, and Trellix bundle both.

What about Kaspersky on servers?

Kaspersky is subject to a U.S. prohibition and restrictions in several jurisdictions; treat eligibility as a legal question before any technical comparison.

Conclusion

Servers deserve their own security economics. CrowdStrike/SentinelOne for detection depth, Trend Micro for virtual patching and workload controls, Defender for Servers for Azure/hybrid value, Bitdefender for efficacy-per-dollar, Uptycs for Linux-first telemetry, and Fortinet/Cisco/Palo Alto/Trellix where their ecosystems already anchor your stack.

Verify Linux parity, protect the crown-jewel tier hardest, and price per server with eyes open.

More on GBHackers:

• Best Ransomware Protection Solutions, Compared and Priced

• Best EDR Solutions, Compared and Priced

• Best CWPP Solutions, Compared and Priced

• Best Patch Management Software, Compared and Priced

• Best CSPM Tools, Compared and Priced

• Best Application Control Tools, Compared and Priced

• Best XDR Solutions, Compared and Priced

• Best Vulnerability Management Tools, Compared and Priced

• Best Cybersecurity Companies

• Best Zero Trust Solutions

• Best Network Security Tools

12 Best Ransomware Protection Solutions Compared (2026): Features & Pricing

12 Best Ransomware Protection Solutions Compared (2026): Features & Pricing
Best Ransomware Protection Solutions Compared

Quick Answer: No single product stops ransomware. The strongest stacks combine EDR prevention (CrowdStrike, SentinelOne, Microsoft Defender, Sophos, Bitdefender), managed eyes-on-glass (Huntress, Sophos MDR), and guaranteed recovery (Rubrik, Acronis).

Note: ColorTokens is microsegmentation and Rubrik is cyber resilience containment and recovery layers, not EDR.

Ransomware is now a professionalized industry double-extortion ransomware operations, hands-on-keyboard operators, and encryption sprints measured in minutes.

Defense that works requires a layered security software strategy across four core jobs: prevent execution, detect and stop encryption early, contain spread, and recover clean data fast.

The verdict up front: anchor on top-tier EDR, add managed detection if you lack a SOC, treat segmentation and immutable backup as the layers that save you when prevention fails.

Below, twelve solutions compared with full per-tool detail including honest category notes where a listed vendor solves a different (but essential) part of the problem. Editorial assessment; pricing by model only.

Table of Contents

1. Decision Matrix

2. The 12 Solutions in Depth

3. Full Comparison Table

4. Buyer’s Guide

5. FAQ

Decision Matrix

If you need…ShortlistLayer
Best-in-class EDR preventionCrowdStrike, SentinelOnePrevent/detect
Prevention + rollback at valueBitdefender, SophosPrevent/recover files
Managed 24/7 for SMB/midHuntress, Sophos MDRDetect/respond
Blast-radius containmentColorTokens (microsegmentation)Contain
Guaranteed clean recoveryRubrik, AcronisRecover
Pre-execution ML preventionDeep InstinctPrevent

The 12 Solutions in Depth

1. SentinelOne (Singularity)

SentinelOne (Singularity)
SentinelOne (Singularity)

Description. Autonomous EDR/XDR whose behavioral AI detects encryption behavior and automatically remediates providing autonomous endpoint detection and response (EDR) with one-click or automatic rollback on Windows, making it a reference pick for automated ransomware mitigation.

Key features: Behavioral AI prevention; automated response; Windows rollback; Storyline attack visualization; ransomware warranty (per terms); server/cloud coverage.

Pricing model: Per endpoint, tiered (Core→Complete/Commercial).

Best for: Teams wanting maximum automation with built-in recovery of encrypted files.

Pros: Autonomous response + rollback; strong efficacy.

Cons: Rollback is Windows-focused; premium tiers add up.

2. Sophos (Intercept X + MDR)

Sophos (Intercept X + MDR)
Sophos (Intercept X + MDR)

Description. Intercept X pairs deep-learning prevention with CryptoGuard behavioral anti-ransomware that detects mass encryption and reverts affected files ranking high among business antivirus and endpoint protection suites with one of the largest MDR operations for organizations without a 24/7 SOC.

Key features: CryptoGuard rollback of encrypted files; exploit prevention; EDR/XDR; Sophos MDR (managed SOC); Central console.

Pricing model: Per endpoint; MDR tiers.

Best for: SMB–mid-market wanting strong anti-ransomware plus optional managed SOC.

Pros: CryptoGuard file reversion; mature MDR; good value.

Cons: Heaviest value inside Sophos Central; enterprise EDR depth trails the top two.

3. CrowdStrike (Falcon)

CrowdStrike (Falcon)
CrowdStrike (Falcon)

Description. The EDR benchmark: behavioral indicators-of-attack (IOAs), integrated threat intelligence and adversary hunting tools, and OverWatch managed hunting that catches hands-on-keyboard ransomware operators before encryption starts.

Key features: IOA behavioral prevention; OverWatch 24/7 hunting; identity threat modules; single lightweight agent; rich forensics.

Pricing model: Per endpoint, modular (published entry bundles; enterprise quote).

Best for: Mid–enterprise wanting the strongest human-operated-ransomware defense.

Pros: Detection efficacy + hunting; intelligence depth.

Cons: Premium cost; modules add up; no native file rollback.

4. Deep Instinct

Deep Instinct
Deep Instinct

Description. Deep-learning prevention that verdicts files pre-execution in milliseconds stopping loaders, droppers, and infostealers before code execution to significantly reduce downstream alert load.

Key features: Pre-execution deep-learning prevention; very low false-positive claims; offline-capable; endpoint/server/storage coverage.

Pricing model: Per endpoint/quote.

Best for: Teams strengthening the prevent layer atop or alongside EDR.

Pros: Stops pre-execution; light operations.

Cons: Not a response/rollback platform; pair with EDR.

5. Trend Micro (Vision One)

Trend Micro (Vision One)
Trend Micro (Vision One)

Description. Trend Micro combines endpoint anti-ransomware with XDR correlation across email, network, and cloud plus a virtual patching heritage that connects with automated patch management tools to shield unpatched vulnerabilities from active exploitation.

Key features: Behavioral anti-ransomware; XDR correlation (email/network/endpoint); virtual patching (host IPS); folder shield; managed services.

Pricing model: Per user/endpoint, credits/tiers.

Best for: Mid–enterprise wanting ransomware defense woven through XDR channels.

Pros: Broad channel correlation; virtual patching.

Cons: Platform breadth adds admin; top-tier EDR efficacy race is close.

6. ColorTokens (Xshield)

ColorTokens (Xshield)
ColorTokens (Xshield)

Description. Category note: microsegmentation, not EDR. ColorTokens contains ransomware by segmenting east-west traffic in line with NSA Zero Trust maturity guidance infected hosts cannot reach file shares, backups, or critical infrastructure, turning an outbreak into an isolated incident.

Key features: Agent-based microsegmentation; east-west visibility; policy simulation; ring-fencing of critical assets/backups; breach containment.

Pricing model: Per workload/quote.

Best for: Containing blast radius across flat networks alongside EDR, not instead of it.

Pros: Stops lateral spread; protects backup infrastructure.

Cons: Not detection/prevention of the payload itself; deployment discipline required.

7. Microsoft Defender (for Endpoint)

Microsoft Defender (for Endpoint)
Microsoft Defender (for Endpoint)

Description. Defender for Endpoint brings behavioral blocking, controlled folder access, attack-surface-reduction (ASR) rules, and automated investigation with built-in capabilities to automatically isolate compromised devices bundled into Microsoft E5.

Key features: Controlled folder access; ASR rules; behavioral blocking; automated investigation/remediation; Defender XDR correlation.

Pricing model: Bundled (E5/Defender plans).

Best for: Microsoft-licensed estates maximizing included protection.

Pros: Near-zero added cost if licensed; deep Windows integration.

Cons: Tuning ASR takes effort; cross-platform depth varies.

8. Rubrik (Security Cloud)

Rubrik (Security Cloud)
Rubrik (Security Cloud)

Description. Category note: cyber resilience/backup, not EDR. Rubrik delivers immutable, air-gapped backups with anomaly detection, blast-radius analysis, and clean-recovery orchestration, shielding organizations against fake data recovery schemes and extortion campaigns.

Key features: Immutable/air-gapped backups; encryption anomaly detection; sensitive-data discovery; threat hunting in backups; orchestrated mass recovery.

Pricing model: Capacity/subscription, quote.

Best for: Enterprises guaranteeing recovery and negotiating from strength.

Pros: Recovery certainty; ransomware-aware backup analytics.

Cons: Doesn’t stop the attack; pair with EDR/MDR.

9. Bitdefender (GravityZone)

Bitdefender (GravityZone)
Bitdefender (GravityZone)

Description. Consistently top-tier prevention efficacy in independent testing, with ransomware mitigation that creates tamper-proof copies of targeted files and restores them post-block, matching features evaluated in antivirus and malware protection comparisons.

Key features: Multi-layer prevention; ransomware mitigation (file backup/restore); EDR/XDR tiers; risk analytics; MDR option.

Pricing model: Per endpoint, published tiers.

Best for: SMB–mid-market wanting leader-grade efficacy at value.

Pros: Test-lab consistency; built-in file restore; price.

Cons: Enterprise services/ecosystem smaller than CS/S1.

10. Malwarebytes (ThreatDown)

Malwarebytes (ThreatDown)
Malwarebytes (ThreatDown)

Description. ThreatDown packages prevention, EDR with 72-hour ransomware rollback on Windows, and optional MDR into simple bundles designed to disrupt the SOC defense attack chain without administrative friction.

Key features: EDR with 72-hour rollback; prevention; browser phishing protection; simple bundles (Core→Ultimate); optional MDR.

Pricing model: Per endpoint, published bundles.

Best for: SMBs wanting effective, low-friction protection with rollback.

Pros: Simplicity + rollback; transparent pricing.

Cons: Enterprise-scale features/integrations limited versus majors.

11. Acronis (Cyber Protect)

Acronis (Cyber Protect)
Acronis (Cyber Protect)

Description. Acronis fuses backup with anti-malware: Active Protection halts encryption behavior and auto-restores touched files from local cache/backup to prevent costly enterprise data loss incidents one agent doing both protection and recovery.

Key features: Integrated backup/DR + anti-ransomware; automatic file restoration; immutable storage options; patch/vulnerability add-ons; MSP multi-tenant.

Pricing model: Per workload/GB, published tiers.

Best for: SMB/MSP estates unifying protection and recovery in one agent.

Pros: Protection + backup single-agent; auto-restore.

Cons: Pure-EDR depth trails leaders; storage costs scale.

12. Huntress

Huntress
Huntress

Description. Managed Detection and Response purpose-built for SMBs and MSPs: 24/7 human threat hunters operating as an external Security Operations Center (SOC), catching persistence footholds, lateral movement, and in-progress ransomware before mass encryption.

Key features: 24/7 SOC/hunting; persistent-foothold detection; ransomware canaries; managed remediation; MSP-native multi-tenant.

Pricing model: Per endpoint, published SMB-friendly pricing.

Best for: SMBs/MSPs lacking a SOC who need eyes-on-glass.

Pros: Human response at SMB price; canaries catch encryption early.

Cons: Rides atop endpoint protection (pair with Defender/AV); not a full enterprise XDR.

Full Comparison Table

SolutionLayerRollback/restoreManaged optionPricing
SentinelOneEDR/XDRYes (Windows)Vigilance MDRPer endpoint
SophosEDR + MDRYes (CryptoGuard)Yes (MDR)Per endpoint
CrowdStrikeEDR/XDRNoOverWatch/CompletePer endpoint/module
Deep InstinctPreventionNoNoQuote
Trend MicroXDRPartialYesCredits/tiers
ColorTokensContainment (microseg)N/APartnerPer workload
Microsoft DefenderEDRLimitedDefender ExpertsBundled E5
RubrikRecovery (resilience)Yes (restore)YesCapacity/quote
BitdefenderEDRYes (file restore)Yes (MDR)Per endpoint
Malwarebytes (ThreatDown)EDRYes (72-hr, Win)Yes (MDR)Per endpoint
AcronisBackup + AVYes (auto-restore)Via MSPPer workload
HuntressMDRVia host EDRCore offeringPer endpoint

Buyer’s Guide

Build the stack in layers. Layer 1 prevention/EDR: CrowdStrike or SentinelOne for depth; Bitdefender, Sophos, or Defender (if E5-licensed) for value; Deep Instinct to harden pre-execution.

Layer 2 24/7 response: Huntress or Sophos MDR if you don’t staff a SOC; ransomware is a 2 a.m. event.

Layer 3 containment: ColorTokens microsegmentation ring-fences file servers and backups so one infected laptop can’t become an enterprise outage.

Layer 4 recovery: Rubrik or Acronis immutable backups, tested quarterly; recovery capability is also extortion leverage.

Apply endpoint hardening: Follow guidelines for safeguarding enterprise edge devices to lock down attack surfaces and remove exposed RDP/SMB ports.

Pricing reality: endpoint layers run per endpoint per year (several publish pricing Bitdefender, ThreatDown, Huntress, Acronis); platform and resilience layers (CrowdStrike modules, Rubrik capacity, ColorTokens workloads) are quote-based.

Key takeaways: rollback features (SentinelOne, Sophos, ThreatDown, Bitdefender, Acronis) shrink incident cost dramatically; MDR is the highest-ROI upgrade for sub-enterprise teams; and immutable, tested backup is the only control that works after everything else fails.

FAQ

What is the best ransomware protection in 2026?

A layered stack, not a product: CrowdStrike or SentinelOne (EDR), plus MDR (Huntress, Sophos) without a SOC, microsegmentation (ColorTokens) for containment, and immutable recovery (Rubrik, Acronis). Value stacks swap in Bitdefender, ThreatDown, or bundled Defender.

How much does ransomware protection cost?

EDR runs per endpoint per year (several vendors publish pricing); MDR adds a per-endpoint service fee; segmentation prices per workload; resilience platforms price on capacity. Model all four layers, not just the agent.

What is ransomware rollback and who offers it?

Rollback restores files encrypted before the block landed: SentinelOne (Windows), Sophos CryptoGuard, ThreatDown (72-hour window), Bitdefender (tamper-proof copies), and Acronis (restore from cache/backup) all offer variants. Verify OS scope and window.

Is Microsoft Defender enough against ransomware?

With E5 features (controlled folder access, ASR rules, automated investigation) properly tuned, it’s a credible core many add MDR (e.g., Huntress rides on Defender) and immutable backup to complete the stack.

Why include microsegmentation in a ransomware list?

Because spread is the catastrophe: segmentation (ColorTokens) prevents one infected host from reaching file shares, backups, and servers — converting an enterprise event into a single-machine incident.

Do backups still matter if I have EDR?

More than ever: EDR lowers probability, immutable tested backups (Rubrik, Acronis) eliminate the worst outcome and remove extortion leverage. Double-extortion data theft is why you still need DLP/segmentation too.

Conclusion

Ransomware defense is a stack: CrowdStrike/SentinelOne (or value picks Bitdefender, Sophos, ThreatDown, bundled Defender) to prevent and detect; Deep Instinct to harden pre-execution; Huntress or Sophos MDR for 24/7 humans; ColorTokens to contain; Rubrik/Acronis to guarantee recovery.

Stream endpoint telemetry into Security Information and Event Management (SIEM) systems, integrate alerts with dedicated cyber incident response tools, test restores quarterly, and ensure your team is equipped to stop encryption before it disrupts business operations.

Buy rollback where you can, test restores quarterly, and judge the whole stack on one question: if encryption starts at 2 a.m. Saturday, who stops it and what’s back online by Monday?

More on GBHackers:

• Best EDR Solutions, Compared and Priced

• Best Application Control & Allowlisting Tools, Compared and Priced

• Best Server Security Solutions, Compared and Priced

• Best Patch Management Software, Compared and Priced

• Best EPM Tools, Compared and Priced

• Best XDR Solutions, Compared and Priced

• Best MDR Services, Compared and Priced

• Best Microsegmentation Solutions, Compared and Priced

• Best Backup & Recovery Solutions, Compared and Priced

• Best Zero Trust Solutions

• Best Cybersecurity Companies

Mantax OTAX Android Ransomware Spies on Users, Steals OTPs and Encrypts Files

Mantax OTAX Android Ransomware Spies on Users, Steals OTPs and Encrypts Files

Mantax OTAX is aggressive Android malware family combines ransomware, spyware, credential theft, and remote device-control features in a single infection chain.

Linked to Indonesian threat actors, the campaign targets users through sideloaded APKs and turns compromised devices into tools for surveillance, financial fraud and real-time extortion.

Unlike conventional Android ransomware that focuses primarily on locking or encrypting files, Mantax OTAX gives its operators broad visibility into a victim’s digital life before initiating the ransom phase.

The malware can steal lock-screen PINs, intercept SMS messages and one-time passwords, collect browser history, contacts, call logs, installed-app data, Google-account information and location details.

It can also access gallery files, capture images from the device’s cameras, and monitor messaging activity in WhatsApp and Telegram.

Analysed samples were distributed as standalone Android APKs hosted on third-party file-sharing services.

The distribution model relies on phishing, messaging lures and social-engineering tactics to convince targets to install an application outside the official Play Store ecosystem.

This sideloading approach bypasses much of the scrutiny associated with formal app-store publication and remains a recurring delivery mechanism for Android banking trojans and spyware.

After installation, Mantax OTAX requests device-administrator privileges, followed by permissions for SMS, contacts, audio and images.

It ultimately seeks Android Accessibility access, a high-risk permission that enables malware to observe and manipulate screen content, automate interaction with applications and harvest sensitive data displayed to the user.

The malware communicates with its command-and-control infrastructure over HTTPS and retrieves its active C2 domain from a GitHub repository.

Victim’s device before and after the ransomware attack (Source : zLabs).
Victim’s device before and after the ransomware attack (Source : zLabs).

This dynamic resolution mechanism allows the operators to change infrastructure if a domain is blocked without distributing a newly compiled APK.

The zLabs research team has discovered a Android malware, sophisticated and highly aggressive mobile malware strain linked to Indonesian threat actors, that marks a dangerous tactical evolution.

Mantax OTAX Android Ransomware

Zimperium identified hxxps://apimantax[.]otax[.]fun as a C2-related domain in its analysis and published associated indicators in its public IOC repository.

Under the guise of this necessary administrative activity, the malware restricts user access to the device and intercepts the user’s lock screen PIN.

Malware showing system lock overlay on top of screen (Source : zLabs).
Malware showing system lock overlay on top of screen (Source : zLabs).

Mantax OTAX requests a unique encryption key from its C2 server using the victim device’s Android ID.

On Android 9 and older releases, it recursively searches shared external storage for documents, images, videos, archives, databases and cryptographic-key material.

The malware uses AES encryption, deletes original content and writes encrypted replacements with a .enc extension.

The ransomware deliberately avoids the Android/data and Android/obb directories, likely reducing the chance of destabilizing the device.

It then replaces selected local images with ransom-themed graphics containing the message: “Your files have been encrypted.

Pay to decrypt.” An on-device chat portal is subsequently displayed, enabling direct negotiations between the operators and victims through Firebase-backed communications.

Researchers said a Firebase misconfiguration exposed extortion conversations and other victim-related data.

Android 10 and later substantially reduce the ransomware module’s file-encryption reach through Scoped Storage.

However, that protection does not neutralize the malware’s surveillance, OTP theft, account takeover and device-disruption capabilities.

Mantax OTAX abuses Android’s MediaProjection API to capture screenshots, record MP4 video and stream screen content.

Screenshots are compressed and uploaded to the Catbox file-hosting service, while generated URLs are sent back to the operators. The malware can also silently take photographs with the front or rear camera.

The latest version of malware using websocket communication (Source : zLabs).
The latest version of malware using websocket communication (Source : zLabs).

A newer Mantax OTAX version uses WebSockets and introduces coercive controls including app blocking, transparent touch-blocking overlays, repeated dialog spam, full-screen video overlays, “jumpscare” image pop-ups and remote text-to-speech playback.

These features can obstruct recovery attempts while increasing psychological pressure on victims.

The campaign illustrates an important shift in mobile extortion: encryption is no longer the sole leverage point.

By pairing data theft, OTP interception, credential capture, continuous screen monitoring and device control with ransomware, operators can pursue double-extortion tactics even where modern Android storage protections limit file encryption.

Users should avoid APKs from untrusted links, keep Android and Play Protect updated, and treat unexpected Accessibility or device-administrator requests as a compromise warning.

Learn 7 Metric-Gated AI SOC Deployment Phases – Download Free AI SOC Deployment Playbook 2026.