JS Analyzer - Burp Suite Extension by Jensec #1733
Open
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
JS Analyzer (JSAnalyzer) — Burp Suite extension for static JavaScript recon
JS Analyzer is a Burp Suite extension (Python running under Burp’s Jython environment) that performs static analysis of JavaScript responses captured in Burp to extract security-relevant artifacts with aggressive noise filtering. It does not exploit a CVE directly; instead, it accelerates discovery of attack surface and leaked secrets that commonly lead to high-impact follow-on attacks (unauthori...
🔧 Technical Details
Trick 1 — Static JavaScript endpoint discovery: Capture JavaScript bundles/responses via an intercepting proxy (Burp) and regex-extract route-like strings (e.g.,
/api/v1/users,/graphql,/oauth2/token,/admin,/.well-known/openid-configuration) to expand the testable attack surface beyond what the UI reveals. Use the discovered endpoints as a prioritized wordlist for authorization testing, fuzzing, and functionality discovery.Trick 2 — Client-side secret harvesting with format-aware patterns: Scan JavaScript for recognizable credential/token formats (e.g.,
AKIA[0-9A-Z]{16},AIza[0-9A-Za-z\-_]{35},sk_live_[0-9a-zA-Z]{24,},ghp_[0-9a-zA-Z]{36},xox[baprs]-...,eyJ...,-----BEGIN PRIVATE KEY-----,mongodb:///postgres:///mysql://). Validate discovered secrets against their ...🤖 Agent Actions
Updated Pentesting Web Methodology spidering section with JS Analyzer Burp extension details (capabilities, noise filtering, installation/use workflow, headless engine example) and added a references section citing the tool’s repository. No tests were run (docs-only change).
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.