Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
waterfall-cli
Advanced tools
TODO
TODO
Read the docs at: https://waterfallcli.io/docs/
TODO
We love contributions! Contributing is easy; learn how.
The printError()
function prints a message in a standardized way. The message will be sent to stderr
, and it is possible that this might appear before un-flushed content in the stdout
stream has been flushed. So, care may be needed to ensure stdout
is flushed before calling printError()
if you want the error message to always appear last. Also, it's your responsibility what happens after the message is output. ie: If you want to exit the program, and you're not within asynchronously executed code, you might be fine using process.exit()
to immediately exit. But, if within asynchronous or callback code, you will likely find that process.exit()
does not immediately exit, but instead, the 'exit' is scheduled for execution after currently executing code is done, so you'll need to use other flow control approaches (eg: return
or throw an Error
) to prevent subsequent code from executing.
FAQs
Effortlessly create CLIs powered by Node.js
The npm package waterfall-cli receives a total of 115 weekly downloads. As such, waterfall-cli popularity was classified as not popular.
We found that waterfall-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.