Open
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://github.com/six2dez/burp-ai-agent Content Categories: Based on the analysis, this content was categorized under "🤖 AI -> AI Security (or add a new page under Web Pentesting / Burp Suite for 'Burp MCP / AI agent integrations')". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
What it is
Burp AI Agent is a Burp Suite extension (packaged as a
.jar; implemented in Java) designed to “bridge” Burp Suite with modern AI/LLMs. It adds:- AI-assisted analysis directly on captured HTTP traffic.
- Passive + active AI scanners covering 62 vulnerability classes (the README lists the number and broad areas like injection/auth/crypto, but does not enumerate each class in the provided content).
- MCP (Model Context P...
🔧 Technical Details
AI-assisted Burp request triage via context menu: Capture traffic in Burp Proxy, then in Proxy > HTTP History right-click a request and run Extensions > Burp AI Agent > Analyze this request. This opens an AI chat bound to that request/response, letting the model explain functionality and highlight attack surfaces to guide manual testing.
Swap LLM backends to control privacy vs capability: Use local HTTP inference (Ollama/LM Studio) to keep data on-host, or use OpenAI-compatible HTTP / cloud CLIs (Gemini/Claude/Codex/OpenCode) for different model capabilities. Configure required authentication (e.g.,
gemini auth login,ANTHROPIC_API_KEY/claude login,OPENAI_API_KEY).Autonomous/programmable Burp control via MCP: Enable the extension’s MCP server (Settings > MCP Server) so an external MCP client can call the extension’s 53+ tools to automate...
🤖 Agent Actions
Summary:
Tests:
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.