Headline
CVE-2020-36651: [FIX] Path traversal sanitizing request path · youngerheart/nodeserver@c4c0f01
A vulnerability has been found in youngerheart nodeserver and classified as critical. Affected by this vulnerability is an unknown functionality of the file nodeserver.js. The manipulation leads to path traversal. The name of the patch is c4c0f0138ab5afbac58e03915d446680421bde28. It is recommended to apply a patch to fix this issue. The identifier VDB-218461 was assigned to this vulnerability.
Skip to content
Actions
Automate any workflow
Packages
Host and manage packages
Security
Find and fix vulnerabilities
Codespaces
Instant dev environments
Copilot
Write better code with AI
Code review
Manage code changes
Issues
Plan and track work
Discussions
Collaborate outside of code
* Explore
* All features
* Documentation
* GitHub Skills
* Blog
For
Enterprise
Teams
Startups
Education
By Solution
CI/CD & Automation
DevOps
DevSecOps
Case Studies
Customer Stories
Resources
GitHub Sponsors
Fund open source developers
* The ReadME Project
GitHub community articles
* Repositories
* Topics
* Trending
* Collections
Pricing
Notifications
Fork 4
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Permalink
Browse files
[FIX] Path traversal sanitizing request path
- Loading branch information
1 parent 56b51bd commit c4c0f0138ab5afbac58e03915d446680421bde28
Showing 1 changed file with 2 additions and 2 deletions.
@@ -27,8 +27,8 @@ function start(config) {
host = conf.serv[key];
}
}
var nowTemp = host.frondend + (request.url.replace('/’, ‘’) || host.baseTemp);
var nowTemp = (host.frondend + (request.url.replace('/’, ‘’) || host.baseTemp)).replace(/\.\./g, ‘’);
var httpHead = header(nowTemp);
conf.app = conf.getApp(host.backend);
if(!host) {
0 comments on commit c4c0f01
Please sign in to comment.