Skip to content
Exploit Analysis · Methodology

Exploit Analysis

Framework for analysing public exploits and proof-of-concept code. Exploitability assessment, root cause classification, detection opportunities, and MITRE ATT&CK mapping.

Exploitability Scale

1

Theoretical

No public PoC. Vulnerability description only. Academic/theoretical feasibility.

2

Proof of Concept

Public PoC exists. Requires significant modification and expertise to weaponise.

3

Functional

Working exploit. Requires some complexity — understanding of target environment.

4

Reliable

Reliable exploit. Limited skill required. Near-push-button exploitation.

5

Weaponised

Fully automated. Used in active campaigns. Metasploit module or crimeware kit.

Root Cause Classification

Memory Corruption

Buffer overflow, heap spray, use-after-free, format string. Common in C/C++ codebases.

Injection Flaws

SQL, command, LDAP, XPath, template injection. Attacker-controlled data reaches interpreter.

Logic / Auth Bypass

Authentication bypass, privilege escalation, insecure direct object references.

Deserialization

Unsafe object deserialization leads to RCE. Java, PHP, Python pickle, .NET BinaryFormatter.

SSRF / Path Traversal

Server-side request forgery enabling internal network access or credential theft.

Detection Opportunities

Network Layer

Protocol anomalies, exploit payloads in traffic, unusual connection patterns to target services.

Process Behaviour

Unexpected child process creation, unusual parent-child relationships, process hollowing.

Memory Forensics

Shellcode patterns, ROP chains, unusual memory allocations in process space.

File System

Dropped payloads, staged files, persistence mechanisms (registry, cron, services).

Authentication Logs

Token manipulation, privilege escalation events, unusual access patterns post-exploitation.

Notable High-Impact Exploits

Level 5
CVE-2021-44228Log4ShellApache Log4j

JNDI injection via user-controlled log data. CVSS 10.0. Weaponised within 12 hours. Millions of internet-facing apps affected.

Level 5
CVE-2023-34362MOVEit SQL InjectionProgress MOVEit Transfer

SQL injection in MOVEit Transfer web app. Cl0p exploited as zero-day before patch. 2600+ organisations, 95M+ individuals.

Level 5
CVE-2021-26855ProxyLogonMicrosoft Exchange

Pre-auth SSRF, chained with CVE-2021-26857 (deserialization) and CVE-2021-27065 (post-auth file write) for full RCE on Exchange. Exploited by HAFNIUM and 10+ groups.

Level 5
CVE-2023-4966CitrixBleedCitrix NetScaler

Buffer over-read leaks authentication session tokens. LockBit and others exploited post-patch against unpatched NetScaler instances.

Level 5
CVE-2024-3400PAN-OS Command InjectionPalo Alto PAN-OS

Zero-day command injection in GlobalProtect VPN. Exploited before patch by UTA0218. CVSS 10.0.

Level 5
CVE-2026-85046Chrome V8 Sandbox RCEGoogle Chromium / Edge / Opera

Type confusion in the V8 JavaScript engine allows a remote attacker to execute arbitrary code inside the Chromium sandbox via a crafted HTML page. Added to CISA KEV Sep 4, 2026. Affects all Chromium-based browsers; apply browser updates immediately across all endpoints.

Level 5
CVE-2026-83548SonicWall SMA1000 SSRFSonicWall SMA1000

Server-side request forgery allows a remote unauthenticated attacker to access sensitive internal functionality on SonicWall SMA1000 appliances. Added to CISA KEV Sep 2, 2026. SonicWall SSL VPN appliances are a primary initial-access vector in ransomware campaigns targeting India.

Level 5
CVE-2026-82329Artifactory Admin Auth BypassJFrog Artifactory

Authentication bypass allows unauthenticated attackers with network access to obtain full administrative privileges under default configuration. Added to CISA KEV September 2026. High supply-chain risk — Artifactory manages build artefacts and embedded secrets for CI/CD pipelines.

Level 5
CVE-2026-76460Cisco ISE Privileged API BypassCisco Identity Services Engine

Incorrect use of privileged APIs allows an attacker to bypass web management interface access restrictions. Added to CISA KEV Sep 16, 2026 with a Sep 19 federal remediation deadline — confirmed active exploitation against identity/NAC infrastructure.

Exploit Intelligence Sources

Frequently Asked Questions

What is exploit weaponisation?

The process of turning a proof-of-concept (PoC) into a reliable, repeatable exploit — potentially automated or packaged into a tool like a Metasploit module — that requires little skill to use.

What is the difference between a PoC and a working exploit?

A PoC demonstrates a vulnerability is real, often unreliably and requiring modification; a working exploit reliably achieves the intended effect, such as code execution, against a defined target configuration.

What is EPSS?

The Exploit Prediction Scoring System, maintained by FIRST.org, estimates the probability (0 to 1) that a given CVE will be exploited in the wild within the next 30 days, based on real-world exploitation data.

Why do defenders track exploit analysis instead of just patching?

Patch windows aren't always immediate — testing, legacy systems, vendor delay — so understanding how a vulnerability is actually exploited lets defenders build detections and compensating controls in the meantime.