More Evidence That Words Don’t Mean What We Thought They Mea...#2357
Open
carlospolop wants to merge 1 commit into
Open
More Evidence That Words Don’t Mean What We Thought They Mea...#2357carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://labs.watchtowr.com/more-evidence-that-words-dont-mean-what-we-thought-they-meant-ivanti-sentry-pre-auth-os-command-injection-cve-2026-10520 Content Categories: Based on the analysis, this content was categorized under "Network Services Pentesting > 80,443 - Pentesting Web Methodology > Ivanti Sentry / MobileIron Sentry, or Pentesting Web > Command Injection". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Ivanti Sentry pre-authenticated OS command injection: CVE-2026-10520
The post analyzes CVE-2026-10520, a pre-authenticated OS command injection vulnerability in Ivanti Sentry / MobileIron Sentry before R10.5.2, R10.6.2, and R10.7.1. Ivanti described the impact as allowing a remote unauthenticated attacker to achieve root-level remote code execution, with a CVSS score of 10.0.
Ivanti also disclosed CVE-2026-10523, an Auth...
🔧 Technical Details
Patch diffing to find exposed execution sinks: Compare vulnerable and patched appliance packages, especially WAR/JAR files, to identify changed controller logic. In this case, diffing
mics.warshowed that onlymics-core-10.5.1-R10.5.1.jarchanged tomics-core-10.5.2-R10.5.2.jar. The changed code was inmics-core/com/mi/middleware/rest/controller/ConfigServiceController.java. Reconstructing the route from the Tomcat context/mics, the Spring controller mapping/api/v2/sentry/mics-config, and the method mapping/handleMessageproduced the attack surface:/mics/api/v2/sentry/mics-config/handleMessage.Abusing exposed configuration command parsers: If an unauthenticated web endpoint accepts a raw string and passes it into an internal configuration service, treat that string as a possible DSL or command language. Here,
messageis tokenized intoco...🤖 Agent ActionsDone.
Updated
src/pentesting-web/command-injection.mdWhat I added
A new section covering the reusable technique behind the Ivanti Sentry bug:
command/module/xpath/valueparsers302/auth-gate behavior and reflection-backed execution bridgesWhy this location
I chose the existing Command Injection page instead of creating a new Ivanti-specific page, because the useful addition is the general technique: HTTP-exposed internal config-command execution leading to OS command execution.
References added
Validation
mdbook build, butmdbookis not installed in this environment (mdbook: command not found).This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.