Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add URL Sanitization #6630

Open
wants to merge 1 commit into
base: v1.x
Choose a base branch
from
Open

Add URL Sanitization #6630

wants to merge 1 commit into from

Conversation

tantofaznem
Copy link

  • Add URL sanitization to prevent directory traversal attacks
  • Implemented sanitizeUrl function to normalize and sanitize URLs.
  • Ensured paths are cleaned to prevent potential directory traversal vulnerabilities.
  • Updated request handling logic to use sanitized URLs for improved security.

* Add URL sanitization to prevent directory traversal attacks

- Implemented `sanitizeUrl` function to normalize and sanitize URLs.
- Ensured paths are cleaned to prevent potential directory traversal vulnerabilities.
- Updated request handling logic to use sanitized URLs for improved security.

dirs = listDirs(__dirname);

server = http.createServer(function (req, res) {
let url = req.url;
//URL Sanitization
let sanitizedUrl = sanitizeUrl(req.url);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where is sanitizedUrl variable being used?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants