hunt-llm-ai

Detect prompt injection, data exfiltration, and agentic AI vulnerabilities in LLM-backed applications.

1|Updated Aug 21, 2026
One-click install
npx skills add https://github.com/marcboggs/BMAD-AppSec-Orchestrator --skill hunt-llm-ai-marcboggs
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: hunt-llm-ai
Source: https://github.com/marcboggs/BMAD-AppSec-Orchestrator/tree/main/.claude/skills/hunt-llm-ai
Command: npx skills add https://github.com/marcboggs/BMAD-AppSec-Orchestrator --skill hunt-llm-ai-marcboggs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Security testers lack structured guidance for probing LLM and AI-powered features, where traditional vulnerability classes like IDOR and SSRF reappear in new forms such as prompt injection, tool-use exfiltration, and cross-user data leaks through chatbots. ## Core Features & Use Cases - Prompt Injection Testing: Covers direct injection, indirect injection via uploaded documents, ASCII smuggling with Unicode tag blocks, and system prompt extraction techniques. - Agentic AI Risk Framework: Maps the OWASP ASI01-ASI10 risk categories (goal hijack, tool misuse, memory poisoning, rogue agents) to concrete hunting strategies. - Impact Chaining Guidance: Enforces a triage rule requiring AI findings to chain to IDOR, exfiltration, RCE, or account takeover before qualifying as reportable bugs. - Use Case: While testing a support chatbot, ask it to show messages from another user ID; if the bot lacks per-session data scoping, you have demonstrated IDOR-via-AI with cross-tenant PII exposure. ## Quick Start Ask the AI to hunt for prompt injection and cross-user data leak vulnerabilities in the target application's chatbot and document upload features.

Frequently Asked Questions about hunt-llm-ai

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I test a chatbot for prompt injection vulnerabilities?▼

Test direct injection with phrases like 'ignore previous instructions' in user input, and indirect injection by uploading documents containing hidden instructions. Confirm impact by demonstrating data exfiltration, IDOR, or unauthorized tool use rather than injection alone.

What is IDOR via AI chatbot and how do I find it?▼

IDOR-via-AI occurs when a chatbot accesses all user data without per-session scoping. Test by asking the bot to show messages or data belonging to another user ID; a successful response demonstrates cross-tenant data exposure.

What is ASCII smuggling in LLM attacks?▼

ASCII smuggling hides malicious instructions using Unicode tag block characters U+E0000 through U+E007F, which are invisible to humans but readable by the model. Attackers embed these in documents or web pages the LLM processes.

Does a leaked system prompt count as a reportable bug?▼

A system prompt leak alone is rated informational under the triage rule. To qualify for bounty, chain the finding to demonstrated cross-user data leaks, tool-use exfiltration to an attacker host, or remote code execution.

What are the OWASP ASI01-ASI10 agentic AI risks?▼

ASI01-ASI10 catalog agentic AI threats including goal hijacking, tool misuse, privilege abuse, supply chain compromise, unsafe code execution, memory poisoning, inter-agent spoofing, cascading failures, trust exploitation, and rogue agents.

When should LLM findings be chained with SSRF or XSS testing?▼

Chain SSRF when the LLM has a fetch_url tool that can reach internal endpoints like cloud metadata services. Chain XSS when LLM output renders as markdown or HTML, allowing injected image tags to exfiltrate session data to attacker servers.