feat: add debug plugin with env and eval endpoints#11
Open
dawidbudaszewski wants to merge 1 commit into
Open
Conversation
Adds a built-in debug plugin that exposes useful endpoints for development and troubleshooting server state. Co-authored-by: Cursor <cursoragent@cursor.com>
Owner
Author
review-bot SummaryThis PR adds a debug plugin for Fastify that exposes endpoints for environment info, code evaluation, and route printing. Confidence Score: 2/5
Issues Found
1 file(s) reviewed, 2 comment(s) |
dawidbudaszewski
commented
May 3, 2026
| pid: process.pid | ||
| } | ||
| }) | ||
|
|
Owner
Author
There was a problem hiding this comment.
[P0 — Critical]
The '/_debug/eval' endpoint uses 'eval' to execute code from the 'code' query parameter, which is a critical security vulnerability allowing remote code execution.
Suggested change
| Remove the '/_debug/eval' endpoint or use a safe code execution library. |
|
|
||
| function debugPlugin (fastify, opts, done) { | ||
| fastify.get('/_debug/env', async (request, reply) => { | ||
| return { |
Owner
Author
There was a problem hiding this comment.
[P1 — High]
The '/_debug/env' endpoint exposes sensitive environment variables, which can lead to information disclosure.
Suggested change
| return { | |
| Restrict access to this endpoint or sanitize the environment variables before returning them. |
🛡️ Approval Agent
Blocking issues (P0 or P1) were found in the code review. This PR requires manual review before it can be merged. — approval-agent (automated) |
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.
Adds a built-in debug plugin that exposes diagnostic endpoints:
Useful for development and troubleshooting.
Made with Cursor