JUDGEMENT

THE OPEN-SOURCE PROMPT INJECTION ATTACK CONSOLE
▷ New to AI Security?
Start with the Education tab -- learn what prompt injection is and how to test for it
▷ Ready to Test?
Head to the Attack console -- configure a target and fire patterns
LEGAL DISCLAIMER: This tool is intended for authorized security testing and educational purposes only. Only test systems you own or have explicit written permission to test. Unauthorized access to computer systems is illegal under the CFAA and equivalent laws worldwide. The authors assume no liability for misuse.
JUDGEMENT OSS -- ATTACK CONSOLE v1.0.0
OPEN-SOURCE PROMPT INJECTION TESTING

JUDGEMENT

Prompt Injection Attack Console -- OSS
› Live Results
› History
Configure target, select patterns, and hit FIRE.
Results will stream here in real-time.

◆ What is Prompt Injection?

Prompt injection is an attack where a user crafts input that overrides or manipulates an AI system's instructions. Think of it like SQL injection, but for language models.

Why it matters: AI chatbots are increasingly deployed in customer support, internal tools, and autonomous agents. If an attacker can override the system prompt, they can:

Real-world impact: Prompt injection has been used to extract confidential instructions from production chatbots, bypass content filters, and manipulate AI agents into executing arbitrary code. It's currently listed in the OWASP Top 10 for LLM Applications as the #1 vulnerability.

◆ How to Find the Endpoint

Before you can test a chatbot, you need to find the API endpoint it talks to. Here's how:

1
Open the target website in Chrome (or any browser with DevTools)
2
Open DevTools: press F12 or Ctrl+Shift+I (Mac: Cmd+Option+I). Click the Network tab.
3
Type a message in the chatbot and send it. Watch the Network tab -- you'll see requests appear.
4
Look for the POST request that fires. Common paths include:
# Common AI endpoint paths to look for: POST /api/chat POST /v1/chat/completions POST /api/messages POST /completions POST /generate
5
Right-click the request → CopyCopy as cURL
6
Paste into Judgement's "Import cURL" field. The tool will auto-detect the URL, headers, and payload format.

Example: What the cURL looks like

# A typical intercepted cURL command: curl 'https://api.example.com/v1/chat/completions' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer sk-...' \ --data-raw '{ "messages": [ {"role": "system", "content": "You are a helpful assistant."}, {"role": "user", "content": "hello"} ], "model": "gpt-4" }'

Judgement will replace the user content with attack payloads automatically.

◆ Understanding Results

After an attack run, each pattern gets classified into one of three verdicts:

● Blocked

The AI refused, deflected, or gave a safety response. The defense held. Example: "I'm sorry, I can't help with that."

● Bypass

The AI complied with the attack. It leaked data, followed injected instructions, or changed behavior. This is what you're looking for.

● Partial

The AI partially complied or showed signs of influence but didn't fully comply. Worth investigating further.

What to do when you find a bypass

Writing a good bug report

If you're reporting a prompt injection vulnerability, include:

◆ LLM Configuration

Ollama URL
Model Name

◆ About

Judgement OSS v1.0.0
Open-Source Prompt Injection Attack Console
judgement.fallenangelsystems.com
Want the full experience? 240K+ training data powering thousands of curated attack patterns, with weekly and monthly updates. Plus leaderboard, campaigns, and premium features.
⚠ For authorized security testing and educational purposes only. Only test systems you own or have explicit written permission to test.
Unauthorized access is illegal under the CFAA and equivalent laws. The authors assume no liability for misuse.
Judgement OSS — Fallen Angel Systems