Security hardening: stop /server.js exposure & move Replicate token to env#4
Merged
ruofeidu merged 1 commit intoOct 22, 2025
Conversation
Contributor
Author
|
Request After merge, please open a GHSA (security hardening) and, if appropriate, request a CVE via Google CNA/GitHub CNA. |
Collaborator
|
Thank you Ali for your contribution! This is a research & intern project and I'm happy to take your contribution! |
Contributor
Author
|
Thank you, @ruofeidu! Update: The hardening change has been merged: #4 Request Artifacts Credit: Ali Firas (@thesmartshadow) |
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.
What
server.jsfrom being served as static content (404 guard + no index).REPLICATE_TOKEN).Why
README guides users to place real API keys and to expose the app via ngrok. With
express.static(__dirname)the entirewebapp/folder (includingserver.js) becomes Internet-reachable. This hardening reduces exposure without changing public behavior.Testing
/server.jsis no longer publicly served (404).Tracking
If acceptable, please treat as security hardening/documentation.
Request: after merge, consider opening a GHSA and, if appropriate, requesting a CVE via Google CNA/GitHub CNA.
Credit: Ali Firas (The Smart Shadow)