
Remember when server responses were just JSON? Such simple times. Now we have React Server Components shipping serialized component trees over the “Flight” wire protocol, and your Burp tabs are giving you what looks like a cat walked across a keyboard.
If you’re testing Next.js apps (or the smaller base of Waku, Shopify Hydrogen, and RedwoodJS users), you’ve seen text/x-component responses. You’ve squinted at them, extracted a JWT manually, and wondered what you were doing with your life. This extension helps with your squinting.
The RSC Parser extension deserializes Flight protocol responses and surfaces the bits you care about:
/users/:userId/settings stuff. Of IDOR interest.x7_temp_val field hiding a JWT is highlighted$F references pointing to RPC endpoints begging for auth bypass testing.Jython. Yes, still. Set your Python environment in Extender > Options, then load nextjs-rsc-parser.py. You’ve done this before.
Four tabs when viewing RSC responses: Parsed (human-readable), Tree (hierarchical), JSON (raw), and Security (quick summary extract based on keywords).
Right-click gives you chunk URL extraction, component analysis, and export options. Standard Burp ergonomics.
Route params with UUIDs or sequential IDs are your first stop for access control testing. Server actions ($Fa, $Fb, etc.) are RPC endpoints. Fuzz them for missing auth checks. Entity arrays showing up with more records than your test user should see is authorization 101. URLs buried in text content occasionally reveal that environment someone forgot to lock down.
None of this is revolutionary methodology. The extension just stops you from parsing Flight protocol by hand, which is a poor use of time.
React’s architectural decisions have created a new attack surface that looks like gibberish to standard tooling. This extension makes it legible. Install it, add RSC endpoints to your enumeration workflow, and move on.
The framework authors will invent something new to parse by next quarter anyway.
Check it out at https://github.com/Adversis/nextjs-rsc-parser