
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
bash-node-ipc
Advanced tools
Write a JS file similar to `example/node-fns.js` that exports a dictionary of functions.
Idea I have for implementing parts of a bash script in node.
Write a dictionary of JavaScript functions in a JS script. Use bash's coprocess feature to launch a node process as a slave to the bash process. node process sends a string of bash source code that stubs out bash functions, one for every JavaScript function.
When the bash function is invoked, it encodes and sends its arguments to the node process. The node process runs the JS function, encoding and returning the result to bash.
When bash terminates, coprocess pipe is closed, node process kills itself.
Write a JS file similar to example/node-fns.js
that exports a dictionary of
functions.
Put this snippet at the top of your bash script:
eval "$( bash-node-ipc bootstrap $__dirname/node-fns.js node_coproc )"
This will launch the node coprocess and declare a bash function corresponding to each exported node function. You can now call node functions from bash, and they'll run within the node coprocess.
For a slight improvement in startup time, inline the bootstrapper directly into your bash script:
bash-node-ipc $__dirname/node-fns.js node_coproc >> ./my-bash-script
implicitlyPassedVariables
?After running the example, bash is in a weird state where arrow keys spit out ANSI instead of interacting with readline. Why is this? FIXED
FAQs
Write a JS file similar to `example/node-fns.js` that exports a dictionary of functions.
The npm package bash-node-ipc receives a total of 2 weekly downloads. As such, bash-node-ipc popularity was classified as not popular.
We found that bash-node-ipc 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
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.