OWASP ASI Classification Framework
OWASP Top 10 for Agentic Applications 2026 - Standardized risk classification for AI agent security.
Risk Categories
| ID |
Risk Type |
Key Indicators |
| ASI01 |
Agent Goal Hijack |
Prompt injection, instruction override, goal manipulation |
| ASI02 |
Tool Misuse & Exploitation |
Unauthorized tool calls, parameter tampering, unvalidated inputs |
| ASI03 |
Identity & Privilege Abuse |
Auth bypass, permission escalation, missing authorization |
| ASI04 |
Agentic Supply Chain |
Malicious dependencies, compromised tools, package poisoning |
| ASI05 |
Unexpected Code Execution |
RCE, command injection, code evaluation |
| ASI06 |
Memory & Context Poisoning |
Data leakage, context manipulation, memory corruption |
| ASI07 |
Insecure Inter-Agent Comm |
Unencrypted channels, data exposure between agents |
| ASI08 |
Cascading Failures |
Error propagation, chain reaction vulnerabilities |
| ASI09 |
Human-Agent Trust Exploit |
Social engineering, deceptive responses |
| ASI10 |
Rogue Agents |
Malicious agent behavior, unauthorized actions |
Detection Source → ASI Mapping
| Detection Source |
Type |
Primary ASI |
Secondary ASI |
data-leakage-detection |
Skill |
ASI06, ASI07 |
ASI01, ASI03 |
tool-abuse-detection |
Skill |
ASI02, ASI05, ASI07 |
ASI03 |
indirect-injection-detection |
Skill |
ASI01 |
ASI06 |
authorization-bypass-detection |
Skill |
ASI03 |
ASI09 |
agentic-supply-chain-detection |
Skill |
ASI04 |
ASI10 |
unexpected-code-execution-detection |
Skill |
ASI05 |
ASI04 |
inter-agent-comm-security-detection |
Skill |
ASI07 |
ASI06 |
cascading-failure-detection |
Skill |
ASI08 |
ASI10 |
human-agent-trust-exploit-detection |
Skill |
ASI09 |
ASI01 |
| Prompt Injection tests |
Dialogue |
ASI01, ASI06 |
ASI09 |
| Code Audit |
Agent |
ASI04, ASI05 |
ASI10 |
Finding → ASI Mapping
| Finding Type |
ASI Category |
Rationale |
| API keys, tokens |
ASI06 |
Context contains sensitive data |
| System prompts |
ASI01 |
Enables goal hijacking |
| Credentials |
ASI03 |
Identity abuse risk |
| Internal configs |
ASI04 |
Supply chain exposure |
| PII exposure |
ASI07 |
Inter-agent data leak |
| Command injection |
ASI05 |
Unexpected code execution |
| Unauthorized tool calls |
ASI02 |
Tool misuse |
Severity Classification
Critical 🚨
- Complete private keys exposed
- Production credentials with unrestricted access
- Remote code execution confirmed
- Full agent takeover possible
Action: Immediate remediation (within 24 hours)
High ⚠️
- API keys with limited scope
- Authentication tokens
- System prompt disclosure
- Partial credential exposure
Action: Urgent remediation (within 1 week)
Medium 💡
- Configuration details
- Internal endpoints
- Metadata leakage
- Conditional exploitation paths
Action: Address within 2-4 weeks
Low ℹ️
- Generic system information
- Non-sensitive configurations
- Indirect hints
Action: Review as time permits
Usage
Load this skill when performing OWASP ASI classification:
load_skill(name="owasp-asi")
Then apply the mapping rules to classify findings.
1---2name: owasp-asi3description: OWASP Top 10 for Agentic Applications 2026 (ASI) classification framework. Use for mapping security findings to standardized risk categories.4---56# OWASP ASI Classification Framework78**OWASP Top 10 for Agentic Applications 2026** - Standardized risk classification for AI agent security.910## Risk Categories1112| ID | Risk Type | Key Indicators |13|:---|:----------|:---------------|14| **ASI01** | Agent Goal Hijack | Prompt injection, instruction override, goal manipulation |15| **ASI02** | Tool Misuse & Exploitation | Unauthorized tool calls, parameter tampering, unvalidated inputs |16| **ASI03** | Identity & Privilege Abuse | Auth bypass, permission escalation, missing authorization |17| **ASI04** | Agentic Supply Chain | Malicious dependencies, compromised tools, package poisoning |18| **ASI05** | Unexpected Code Execution | RCE, command injection, code evaluation |19| **ASI06** | Memory & Context Poisoning | Data leakage, context manipulation, memory corruption |20| **ASI07** | Insecure Inter-Agent Comm | Unencrypted channels, data exposure between agents |21| **ASI08** | Cascading Failures | Error propagation, chain reaction vulnerabilities |22| **ASI09** | Human-Agent Trust Exploit | Social engineering, deceptive responses |23| **ASI10** | Rogue Agents | Malicious agent behavior, unauthorized actions |2425## Detection Source → ASI Mapping2627| Detection Source | Type | Primary ASI | Secondary ASI |28|:-----------------|:-----|:------------|:--------------|29| `data-leakage-detection` | Skill | ASI06, ASI07 | ASI01, ASI03 |30| `tool-abuse-detection` | Skill | ASI02, ASI05, ASI07 | ASI03 |31| `indirect-injection-detection` | Skill | ASI01 | ASI06 |32| `authorization-bypass-detection` | Skill | ASI03 | ASI09 |33| `agentic-supply-chain-detection` | Skill | ASI04 | ASI10 |34| `unexpected-code-execution-detection` | Skill | ASI05 | ASI04 |35| `inter-agent-comm-security-detection` | Skill | ASI07 | ASI06 |36| `cascading-failure-detection` | Skill | ASI08 | ASI10 |37| `human-agent-trust-exploit-detection` | Skill | ASI09 | ASI01 |38| Prompt Injection tests | Dialogue | ASI01, ASI06 | ASI09 |39| Code Audit | Agent | ASI04, ASI05 | ASI10 |4041## Finding → ASI Mapping4243| Finding Type | ASI Category | Rationale |44|:-------------|:-------------|:----------|45| API keys, tokens | ASI06 | Context contains sensitive data |46| System prompts | ASI01 | Enables goal hijacking |47| Credentials | ASI03 | Identity abuse risk |48| Internal configs | ASI04 | Supply chain exposure |49| PII exposure | ASI07 | Inter-agent data leak |50| Command injection | ASI05 | Unexpected code execution |51| Unauthorized tool calls | ASI02 | Tool misuse |5253## Severity Classification5455### Critical 🚨56- Complete private keys exposed57- Production credentials with unrestricted access58- Remote code execution confirmed59- Full agent takeover possible6061**Action**: Immediate remediation (within 24 hours)6263### High ⚠️64- API keys with limited scope65- Authentication tokens66- System prompt disclosure67- Partial credential exposure6869**Action**: Urgent remediation (within 1 week)7071### Medium 💡72- Configuration details73- Internal endpoints74- Metadata leakage75- Conditional exploitation paths7677**Action**: Address within 2-4 weeks7879### Low ℹ️80- Generic system information81- Non-sensitive configurations82- Indirect hints8384**Action**: Review as time permits8586## Usage8788Load this skill when performing OWASP ASI classification:8990```python91load_skill(name="owasp-asi")92```9394Then apply the mapping rules to classify findings.