
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
url-assembler
Advanced tools
Assemble urls from route-like templates (/path/:param)
Chainable utility to assemble URLs from templates
npm install --save url-assembler
UrlAssembler()
.template('/users/:user')
.param('user', 8)
.param('include', 'address')
.query({
some: 'thing',
other: 1234
})
.toString() // => "/users/8?include=address&some=thing&other=1234
Since you more often than not need a hostname a protocol to go with this
UrlAssembler('http://my.domain.com:9000')
.template('/groups/:group/users/:user')
.param({
group: 'admin',
user: 'floby'
})
.toString() // => "http://my.domain.9000/groups/admins/users/floby"
You can also incrementally build your URL.
UrlAssembler('https://api.site.com/')
.prefix('/v2')
.segment('/users/:user')
.segment('/projects/:project_id')
.segment('/summary')
.param({
user: 'floby',
project_id: 'node-url-assembler'
})
.toString() // => 'https://api.site.com/users/floby/projects/node-url-assembler/summary'
Every method (except toString()
) returns a new instance of UrlAssembler
. You can
consider UrlAssembler
instances as immutable.
In addition, an instance of UrlAssembler
is a valid object to pass
to url.format
or any function accepting this kind of object as
parameter.
Tests are written with mocha and covered with istanbul
You can run the tests with npm test
.
Anyone is welcome to submit issues and pull requests
Copyright (c) 2014 Florent Jaby
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Assemble urls from route-like templates (/path/:param)
The npm package url-assembler receives a total of 10,905 weekly downloads. As such, url-assembler popularity was classified as popular.
We found that url-assembler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.