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.
Creates an isolated thread / process in JavaScript (Node.js and modern browsers)
Creates an isolated thread / process in JavaScript (Node.js and modern browsers).
master.js
standalone("worker.js", function(obj) {
obj.getXXXByYYY("YYY", function(err, XXX) {
console.log(XXX); // "XXX by YYY"
});
});
worker.js
var obj = {
getXXXByYYY : function(YYY) {
return "XXX" + " by " + YYY;
}
};
standalone(obj);
In master.js, we can use "getXXXByYYY" asynchronously, while the originally defined API is synchronous.
In Node.js, standalone spawns a child process.
In browsers, standalone creates a WebWorker instance.
$ npm install standalone
In browsers,
<script type="text/javascript" src="/path/to/standalone.js"></script>
Then the variable "standalone" is set to global.
In worker.js (when running in Web Worker),
importScripts('/path/to/standalone.js');
can import the variable.
In Node.js,
var standalone = require('standalone');
Creates a worker from filename. callback is called after the target object is created.
callback is passed one argument. The target object which has asynchronous APIs.
master.js
var master = standalone("worker.js", function(obj) {
obj.add(123, 456, function(e, v) {
// e: null if no error, error object if error occurred.
// v: result
});
})
if debugMode is true, verbose logs appear in console.
Returns master object.
Set an object obj to create asynchronous APIs from.
worker.js
var worker = standalone({
add : function(a, b) { return a + b },
sub : function(a, b) { return a - b }
});
if debugMode is true, verbose logs appear in console.
Returns worker object.
Closes the worker instance.
callback is called after worker.onClose is executed.
master.closeWorker(function(e, msg) {
// e: null if no error, error object if error occurred.
// v: the value worker.onClose() returned.
});
Function to be called before closing.
worker.onClose = function() {
db.save();
return 1;
};
The returned value is passed to the callback function in master.closeWorker(callback)
(The MIT License)
Copyright (c) 2012 SHIN Suzuki shinout310@gmail.com
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
Creates an isolated thread / process in JavaScript (Node.js and modern browsers)
We found that standalone 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
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.