Hacking in the Age of AI LLMs, Agentic CLIs, MCP Servers, an...#2402
Open
carlospolop wants to merge 1 commit into
Open
Hacking in the Age of AI LLMs, Agentic CLIs, MCP Servers, an...#2402carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://yeswehack.com/learn-bug-bounty/llm-bug-bounty-hunting-agentic-cli Content Categories: Based on the analysis, this content was categorized under "AI Security -> Burp MCP: LLM-assisted traffic review, and Pentesting Web -> XSS -> DOM XSS / Misc JS Tricks". 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
The post explains how LLMs can be integrated into Bug Bounty workflows without turning reports into unverified AI-generated false positives. The core message is that LLMs are useful for accelerating analysis, but they must be treated as assistants, not authorities. They can help analyze code, generate exploit tooling, review proxy traffic, summarize notes, suggest payloads, and polish reports, but they can also hallucinate vulnerabilities or produce PoCs that do not actually execute. Submitti...
🔧 Technical Details
Agentic LLM + MCP proxy workflow: An agentic CLI can be connected to a web proxy through an MCP server so the model can inspect proxy history, replay HTTP requests, read notes, and reason over real testing context instead of operating as a disconnected chatbot. For Burp Suite with Claude Code, place a
.mcp.jsonfile in the working directory defining an SSE MCP server athttp://localhost:9876/, or runclaude mcp add burpsuite --transport sse --url http://localhost:9876/. This technique is useful for guided testing, request review, payload brainstorming, and report drafting, but every model-generated finding must still be manually reproduced.DOM XSS source-to-sink analysis: If client-side JavaScript reads attacker-controlled data from
window.location.searchusingURLSearchParamsand concatenates it into an HTML string passed todocument.write(), the URL parameter...🤖 Agent Actions
Updated
src/AI/AI-Burp-MCP.md.Added:
.mcp.jsonclaude mcp add ...commandwindow.location.search→URLSearchParams→document.write()source-to-sink flow"><img ...>can fail when new tags are filtered<img>withx" onload=alert(1) y="zAlso updated the page’s References with:
Validation:
git diff## Referencessection and banner preservedmdbook buildcould not be run becausemdbookis not installed in this environmentThis PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.