Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
any-shell-escape
Advanced tools
Escape and stringify an array of arguments to be executed on the shell
Escape and stringify an array of arguments to be executed on the shell
npm install any-shell-escape
var shellescape = require('any-shell-escape');
var args = ['curl', '-v', '-H', 'Location;', '-H', "User-Agent: FooBar's so-called \"Browser\"", 'http://www.daveeddy.com/?name=dave&age=24'];
var escaped = shellescape(args);
console.log(escaped);
yields (on POSIX shells):
curl -v -H 'Location;' -H 'User-Agent: FoorBar'"'"'s so-called "Browser"' 'http://www.daveeddy.com/?name=dave&age=24'
or (on Windows):
curl -v -H "Location;" -H "User-Agent: FooBar's so-called ""Browser""" "http://www.daveeddy.com/?name=dave&age=24"
Which is suitable for being executed by the shell.
var shellescape = require('shell-escape');
var args = ['hello!', 'how are you doing $USER', '"double"', "'single'"];
var escaped = 'echo ' + shellescape.msg(args);
console.log(escaped);
yields (on POSIX shells):
echo 'hello!' 'how are you doing $USER' '"double"' "'"'single'"'"
or (on Windows, which doesn't support escaping echoed messages):
echo hello! how are you doing $USER "double" 'single'
and when run on the shell:
$ echo 'hello!' 'how are you doing $USER' '"double"' "'"'single'"'"
hello! how are you doing $USER "double" 'single'
MIT
FAQs
Escape and stringify an array of arguments to be executed on the shell
The npm package any-shell-escape receives a total of 80,240 weekly downloads. As such, any-shell-escape popularity was classified as popular.
We found that any-shell-escape 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.