recon-js-analysis

Installation
SKILL.md

JavaScript analysis

When it applies

The app is JS-heavy (SPA). The front-end bundle is a map of the backend: it references API endpoints, parameters, feature flags, roles, and sometimes secrets — much of it not linked in the UI.

Why it works

Client code must know how to call the server, so endpoints/params are embedded in JS. Bundlers also occasionally ship source maps (full original source) and developers leave keys/comments.

Method

  1. Collect all JS: katana -jc, subjs, or crawl; grab every .js (incl. lazy-loaded chunks).
  2. Extract endpoints/params: linkfinder/jsluice pull URLs, paths, and param names from bundles.
  3. Hunt secrets & flags: grep for apiKey|token|secret|internal|admin|debug, feature flags, and role checks done client-side (server may not enforce them → BOLA/BFLA leads).
  4. Source maps: if .map files ship, reconstruct original source (source-map tools) → full whitebox-ish view.
  5. Feed results: new endpoints → api-*; client-only auth checks → api-bola; secrets → validate.
Installs
2
GitHub Stars
19
First Seen
7 days ago
recon-js-analysis — noorqureshi/sploitagent