Detect Ivanti Sentry OS Command Injection Exploitation (CVE-2026-10520) in Sumo Logic CSE
Detects exploitation attempts targeting CVE-2026-10520, an OS command injection vulnerability (CWE-78) in Ivanti Sentry. This vulnerability is actively exploited in the wild (CISA KEV) and allows unauthenticated or authenticated attackers to inject operating system commands through Ivanti Sentry's administrative or API interfaces, potentially leading to full system compromise. Ivanti Sentry acts as a gateway for enterprise mobile device management, making it a high-value target for threat actors seeking persistent access to corporate infrastructure.
MITRE ATT&CK
Sumo Detection Query
_sourceCategory=endpoint OR _sourceCategory=linux/secure OR _sourceCategory=auditd
| where (%"parent_process_name" matches /(?i)(java|tomcat|catalina|sentry)/ or %"ParentProcessName" matches /(?i)(java|tomcat|catalina|sentry)/)
| where (%"process_name" matches /^(sh|bash|dash|python[23]?|perl|wget|curl|nc|ncat|netcat|chmod|mkfifo|id|whoami|uname)$/ or %"Image" matches /\\(sh|bash|python[23]?|perl|wget|curl|nc\.exe|cmd\.exe)$/)
| if (%"process_name" matches /(nc|ncat|netcat|mkfifo)/, "critical",
if (%"CommandLine" matches /(https?:\/\/[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})/ and %"process_name" matches /(wget|curl)/, "high",
if (%"CommandLine" matches /[;&|`]|\$\(|>\//, "high",
if (%"process_name" matches /(id|whoami|uname)/, "medium", "low")))) as risk_tier
| where risk_tier in ("critical", "high", "medium")
| fields _messageTime, _sourceHost, %"user", %"parent_process_name", %"process_name", %"CommandLine", risk_tier
| sort by _messageTime desc Sumo Logic query detecting OS command injection exploitation of Ivanti Sentry by correlating process lineage from Java/Tomcat parents with suspicious child process execution patterns indicative of CVE-2026-10520 active exploitation.
Data Sources
Required Tables
False Positives & Tuning
- Legitimate Ivanti Sentry service routines executing diagnostic shell commands on schedule
- Authorized penetration testing engagements against Ivanti infrastructure
- Software deployment pipelines using curl/wget from Java-based CI agents co-hosted on Sentry systems
- Endpoint detection agents performing OS-level queries through Tomcat-adjacent processes
Other platforms for CVE-2026-10520
Testing Methodology
Validate this detection against 4 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.
- Test 1Ivanti Sentry CVE-2026-10520 Basic Command Injection Simulation
Expected signal: EDR should record process creation event: parent=java, child=bash with arguments '-c' and 'id; whoami; uname -a; cat /etc/passwd | head -3'. Auditd should record EXECVE syscall with ppid matching java process PID. Network telemetry: no outbound connections expected in this basic test.
- Test 2Ivanti Sentry Reverse Shell Simulation via Java Parent
Expected signal: Process chain: java -> bash (args: -c, 'echo ... | nc 127.0.0.1 9999') -> nc (args: 127.0.0.1, 9999). Network connection event: nc connecting to 127.0.0.1:9999. Auditd EXECVE syscalls for bash and nc with ppid chain traceable to java.
- Test 3Ivanti Sentry Web Shell Drop Simulation
Expected signal: File creation event: /tmp/sim_sentry_webapps/cmd_sim_marker.jsp created by initiating process java (sentry_webshell_sim). Process creation event: java spawning bash to list directory contents. EDR file monitoring should record .jsp creation in simulated webapps directory with java as initiating process.
- Test 4Ivanti Sentry Credential Staging Simulation
Expected signal: Process chain: java -> bash (multiple invocations with file read and base64 encoding commands). File access events: reads of simulated credential files. File creation event: /tmp/exfil_stage.b64 created by bash initiating from java parent. Auditd EXECVE records for bash invocations with ppid traceable to java.
References (4)
- https://hub.ivanti.com/s/article/Security-Advisory-Ivanti-Sentry-CVE-2026-10520-CVE-2026-10523?language=en_US
- https://www.cisa.gov/news-events/directives/bod-26-04-prioritizing-security-updates-based-risk
- https://www.cisa.gov/news-events/directives/bod-26-04-implementation-guidance-prioritizing-security-updates-based-risk
- https://nvd.nist.gov/vuln/detail/CVE-2026-10520
Unlock Pro Content
Get the full detection package for CVE-2026-10520 including response playbook, investigation guide, and atomic red team tests.