Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aradotso avatar

Deepseek Pentest Ai Burp Extension

  • 1 installs
  • 10 repo stars
  • Updated August 4, 2026
  • aradotso/security-skills

DeepSeek Pentest AI is a Burp Suite extension that uses the DeepSeek API to generate attack payloads and automate fuzzing for web vulnerability testing.

About

DeepSeek Pentest AI is a Burp Suite extension that uses the DeepSeek API to generate context-aware attack payloads and automate fuzzing. It detects parameters across query strings, POST, JSON, XML, and headers, injects generated payloads, and scores severity and confidence. Web application pentesters use it to test for SQL injection, XSS, SSRF, and other vulnerabilities, then export findings or send them to Repeater and Intruder. It requires Burp Suite, Jython, and a DeepSeek API key.

  • Burp Suite extension that generates AI attack payloads via the DeepSeek API
  • Auto-detects parameters and fuzzes for SQLi, XSS, SSRF, RCE, SSTI, XXE and more
  • Privacy-first redaction, severity scoring, CSV export, and Repeater/Intruder handoff

Deepseek Pentest Ai Burp Extension by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #1,835 of 2,203 Security skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

deepseek-pentest-ai-burp-extension capabilities & compatibility

Extension is free but requires a DeepSeek API key (paid usage) and a Burp Suite install with Jython.

Capabilities
security audit
Works with
github
Use cases
security audit
Pricing
Bring your own API key
From the docs

What deepseek-pentest-ai-burp-extension says it does

DeepSeek Pentest AI is a Burp Suite extension that combines generative AI with intelligent fuzzing to automate payload generation and vulnerability testing.
SKILL.md
npx skills add https://github.com/aradotso/security-skills --skill deepseek-pentest-ai-burp-extension

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars10
Last updatedAugust 4, 2026
Repositoryaradotso/security-skills

What it does

Generate AI attack payloads inside Burp Suite and fuzz web app parameters for injection and other vulnerabilities.

Who is it for?

Web application pentesters who use Burp Suite and want AI-generated, context-aware attack payloads.

Skip if: Static source-code auditing or users without Burp Suite; it is a Burp-only extension.

When should I use this skill?

You want to generate AI payloads and fuzz web app parameters inside Burp Suite.

What you get

Context-aware AI payloads injected and scored against target parameters, with exportable evidence.

  • AI-generated attack payloads
  • Fuzzing results with severity/confidence
  • CSV export of findings

By the numbers

  • 16 attack types supported
  • Default 10 payloads per attack type

Files

SKILL.mdMarkdownGitHub ↗

DeepSeek Pentest AI Burp Extension

Skill by ara.so — Security Skills collection.

DeepSeek Pentest AI is a Burp Suite extension that combines generative AI with intelligent fuzzing to automate payload generation and vulnerability testing. It uses the DeepSeek API to generate context-aware attack payloads for SQL injection, XSS, command injection, path traversal, SSRF, RCE, SSTI, XXE, and more.

What It Does

  • AI-Powered Payload Generation: Creates advanced attack payloads using DeepSeek's language model
  • Automatic Parameter Detection: Identifies parameters in GET, POST, JSON, XML, multipart, and custom headers
  • Smart Fuzzing: Injects payloads, compares against baselines, scores severity and confidence
  • Real-Time Metrics: Visualizes vulnerability types with integrated charts
  • Privacy-First: Redacts hostnames and sanitizes sensitive data before sending to AI
  • Export Results: CSV export with full request/response history and evidence
  • Burp Integration: Send findings directly to Repeater and Intruder

Installation

Prerequisites

  • Burp Suite Pro or Community Edition
  • Jython standalone JAR (for Python extensions)
  • DeepSeek API key from https://platform.deepseek.com/

Setup Steps

1. Clone the repository:

git clone https://github.com/HernanRodriguez1/DeepSeek-Pentest-AI.git
cd DeepSeek-Pentest-AI

2. Configure Jython in Burp Suite:

  • Go to ExtenderOptions
  • Under Python Environment, set the location of jython-standalone.jar

3. Load the extension:

  • Go to ExtenderExtensionsAdd
  • Extension type: Python
  • Extension file: Select the .py file from the cloned repository
  • Check the Output tab for "Plugin initialized" message

4. Configure API Key:

  • Navigate to the DeepSeek Pentest AI tab in Burp
  • Enter your DeepSeek API key (store in environment variable for security)

Core Workflow

1. Capture a Request

Intercept a request in Burp Proxy or send one from Repeater to the extension.

2. Analyze & Generate Payloads

# The extension automatically detects parameters from:
# - Query strings: ?id=123&category=books
# - POST body: username=admin&password=test
# - JSON: {"user": "admin", "role": "user"}
# - XML: <user><name>admin</name></user>
# - Multipart form data
# - Custom headers: X-Forwarded-For, User-Agent, etc.

In the UI:

  • Select Attack Type (SQLi, XSS, Command Injection, etc.) or CUSTOM PROMPT
  • Set Number of Payloads (default: 10)
  • Set Delay between requests (milliseconds)
  • Click Analyze & Generate

3. Start Fuzzing

Click Start Pentesting to inject payloads into detected parameters and analyze responses.

Attack Types

The extension supports predefined attack strategies:

attack_types = [
    "SQL Injection",
    "XSS (Cross-Site Scripting)",
    "Command Injection",
    "Path Traversal",
    "LFI (Local File Inclusion)",
    "SSRF (Server-Side Request Forgery)",
    "RCE (Remote Code Execution)",
    "SSTI (Server-Side Template Injection)",
    "XXE (XML External Entity)",
    "NoSQL Injection",
    "GraphQL Injection",
    "Open Redirect",
    "CRLF Injection",
    "CORS Misconfiguration",
    "Host Header Injection",
    "CUSTOM PROMPT"
]

Custom Prompt Usage

For specialized payload generation:

# Instead of selecting a predefined attack type,
# enter a custom instruction in the prompt field

# Example 1: WAF Bypass
custom_prompt = "Give me payloads SQLi boolean bypass WAF"

# Example 2: Specific Technology
custom_prompt = "Generate SSTI payloads for Jinja2 templates"

# Example 3: Chained Attacks
custom_prompt = "Create XSS payloads that also attempt DOM clobbering"

Result: The AI generates targeted payloads matching your exact requirements instead of generic patterns.

Configuration

API Key Management

Store your API key securely:

# Linux/macOS
export DEEPSEEK_API_KEY="your_api_key_here"

# Windows
set DEEPSEEK_API_KEY=your_api_key_here

Reference in code (if extending):

import os
api_key = os.getenv('DEEPSEEK_API_KEY')

Payload Generation Settings

# Number of payloads to generate per attack type
num_payloads = 10  # Adjustable: 5-50

# Delay between fuzzing requests (milliseconds)
delay_ms = 100  # Recommended: 100-1000 to avoid rate limits

# Heuristic scoring thresholds
confidence_threshold = 0.7  # 0.0-1.0
severity_levels = ["Low", "Medium", "High", "Critical"]

Code Examples

Example 1: Analyzing Generated Payloads

# After clicking "Analyze & Generate", payloads appear in the AI Analysis tab
# Example output for SQL Injection:

payloads = [
    "' OR '1'='1",
    "' OR '1'='1'--",
    "admin' --",
    "' OR 1=1--",
    "' UNION SELECT NULL--",
    "1' AND '1'='1",
    "' OR 'a'='a",
    "1' ORDER BY 1--",
    "' OR ''='",
    "1' UNION SELECT username, password FROM users--"
]

# Each payload is tested against detected parameters
# Results include: request, response, status code, length, evidence

Example 2: Parameter Detection Logic

# The extension automatically identifies injectable parameters:

# Query string parameters
GET /search?q=test&category=all HTTP/1.1
# Detected: ['q', 'category']

# JSON body
POST /api/login HTTP/1.1
Content-Type: application/json

{"username": "admin", "password": "pass"}
# Detected: ['username', 'password']

# XML body
POST /api/user HTTP/1.1
Content-Type: application/xml

<user><id>123</id><role>admin</role></user>
# Detected: ['id', 'role']

# Custom headers (special cases)
GET / HTTP/1.1
X-Forwarded-For: 127.0.0.1
User-Agent: Mozilla/5.0
# Detected: ['X-Forwarded-For', 'User-Agent'] (if testing for header injection)

Example 3: Heuristic Scoring

# Response analysis after payload injection

def score_response(baseline, test_response, payload):
    """
    Compares test response against baseline to detect anomalies
    """
    score = 0.0
    evidence = []
    
    # Check for SQL error messages
    sql_errors = ["SQL syntax", "mysql_fetch", "ORA-", "PostgreSQL", "sqlite3"]
    for error in sql_errors:
        if error.lower() in test_response.lower():
            score += 0.3
            evidence.append(f"SQL error detected: {error}")
    
    # Check for XSS reflection
    if payload in test_response and "<script>" in payload:
        score += 0.4
        evidence.append("XSS payload reflected in response")
    
    # Check for status code changes
    if test_response.status_code != baseline.status_code:
        score += 0.1
        evidence.append(f"Status code changed: {baseline.status_code} -> {test_response.status_code}")
    
    # Check for response length anomalies
    if abs(len(test_response.body) - len(baseline.body)) > 500:
        score += 0.2
        evidence.append("Significant response length difference")
    
    return min(score, 1.0), evidence

Example 4: Exporting Results

# Export options available in the UI:

# 1. Export All Results
# Includes: all requests, responses, payloads, parameters tested

# 2. Export Only Vulnerabilities
# Filters: only entries with confidence >= threshold

# 3. Export With Evidence Only
# Filters: entries with non-empty evidence snippets

# CSV Format:
# Timestamp | URL | Parameter | Payload | Status | Length | Confidence | Severity | Evidence

Common Patterns

Pattern 1: Testing a Login Form

1. Capture POST request to /login 2. Extension detects username and password parameters 3. Select SQL Injection attack type 4. Generate 15 payloads 5. Start fuzzing with 200ms delay 6. Review results for authentication bypass evidence

Pattern 2: Custom WAF Bypass

1. Capture request blocked by WAF 2. Select CUSTOM PROMPT 3. Enter: "Generate SQLi payloads using URL encoding and inline comments to bypass ModSecurity" 4. Generate payloads 5. Test manually in Repeater or auto-fuzz

Pattern 3: API Testing

1. Capture JSON API request 2. Extension auto-detects JSON parameters 3. Select NoSQL Injection or GraphQL Injection 4. Review AI-generated payloads for API-specific attacks 5. Export findings with evidence

Troubleshooting

Extension Not Loading

# Check Extender → Output tab for errors

# Common issues:
# 1. Jython not configured correctly
# Solution: Download jython-standalone.jar and set path in Extender → Options

# 2. Python version mismatch
# Solution: Use Jython 2.7.x (Burp requires Jython, not CPython)

# 3. Missing dependencies
# Solution: Ensure all imports are available in Jython environment

API Key Errors

# Error: "Invalid API Key" or "Authentication failed"

# Solutions:
# 1. Verify API key is correct from https://platform.deepseek.com/
# 2. Check for extra spaces or newlines in key field
# 3. Ensure API key has sufficient credits/quota
# 4. Test API key with curl:

curl https://api.deepseek.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $DEEPSEEK_API_KEY" \
  -d '{
    "model": "deepseek-chat",
    "messages": [{"role": "user", "content": "test"}]
  }'

No Payloads Generated

# Check AI Analysis tab for error messages

# Common causes:
# 1. API rate limit exceeded
# Solution: Increase delay between requests

# 2. Network connectivity issues
# Solution: Check proxy settings, firewall rules

# 3. Malformed request sent to AI
# Solution: Review extension logs, check parameter detection

# 4. AI returned unexpected format
# Solution: Try different attack type or custom prompt

False Positives

# High confidence scores but manual verification shows no vulnerability

# Mitigations:
# 1. Adjust heuristic thresholds in code
# 2. Review evidence snippets in Results tab
# 3. Send to Repeater for manual confirmation
# 4. Check baseline response accuracy
# 5. Add custom scoring rules for your target

Performance Issues

# Extension slows down Burp Suite

# Solutions:
# 1. Reduce number of payloads (5-10 instead of 20+)
# 2. Increase delay between requests (500-1000ms)
# 3. Disable real-time metrics if not needed
# 4. Clear request history periodically
# 5. Use "Export & Clear" to free memory

Best Practices

1. Always test on authorized targets only — Never use against systems without explicit permission 2. Start with baseline testing — Let the extension capture a clean baseline response 3. Review AI-generated payloads — Not all payloads may be relevant to your target 4. Use custom prompts for specific scenarios — Generic attack types may miss edge cases 5. Verify findings manually — AI scoring is heuristic, confirm vulnerabilities in Repeater 6. Export results regularly — Prevents data loss and helps with reporting 7. Monitor API usage — DeepSeek API has rate limits and costs 8. Sanitize exports — Redact sensitive data before sharing CSV reports

Integration with Burp Tools

Send to Repeater

Right-click any request in Pentest Live tab → Send to Repeater for manual testing

Send to Intruder

Right-click any request → Send to Intruder → Use AI-generated payloads as position values

Scan Results

Cross-reference findings with Burp Scanner (Pro only) for comprehensive coverage

Environment Variables

# Recommended environment setup
export DEEPSEEK_API_KEY="sk-..."
export BURP_PENTEST_DELAY=200
export BURP_PENTEST_PAYLOADS=10
export BURP_PENTEST_LOG_LEVEL=INFO

Further Resources

  • Project Repository: https://github.com/HernanRodriguez1/DeepSeek-Pentest-AI
  • DeepSeek API Docs: https://platform.deepseek.com/docs
  • Burp Extender API: https://portswigger.net/burp/extender/api/
  • Author LinkedIn: https://www.linkedin.com/in/hernanrodriguez-/

Related skills

FAQ

What do I need to run DeepSeek Pentest AI?

Burp Suite Pro or Community, the Jython standalone JAR, and a DeepSeek API key from platform.deepseek.com.

Which attacks does it support?

SQLi, XSS, command injection, path traversal, LFI, SSRF, RCE, SSTI, XXE, NoSQL, GraphQL injection, and custom prompts.

Securityauditappsec

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.