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.
hook.io-oscserver
Advanced tools
a simple Hook for making an OSC server
[sudo] npm install hook.io-oscserver -g
hookio-oscserver
osc-out-message sends an OSC message
osc-in-message event emitted when an OSC message is recived
{
address:'/an/osc/address',
typetag:'isf' //matches params type and index
params:[0,"string",0.5]
}
{
address:'/an/osc/address',
typetag:'isf' //must match params type and index
params:[0,"string",0.5] //must match typetag
deviceId:'dummyDeviceId' //[OPTIONAL] if deviceId specified on options the sender will only send those messages.
}
var Hook = require('hook.io-oscserver').OSCServerHook;
var options = {
inPort: 9001
,outPort: 9000
};
var hook = new Hook(options);
hook.on('osc-in-message',function(message){
console.log(message);
});
hook.start();
var Hook = require('hook.io-oscserver').OSCServerHook;
var options = {
inPort: 9001
,outPort: 9000
//,deviceId: "dummyDeviceId" //[OPTIONAL]
};
var hook = new Hook(options);
var oscMessage = {
address:'/an/osc/address'
,typetag:'isf' //must match params type and index
,params:[0,"string",0.5] //must match typetag
//,deviceId:'dummyDeviceId' //[OPTIONAL] if deviceId specified on options the sender will only send those messages.
}
hook.on('hook::ready',function(){
hook.emit('osc-out-message',oscMessage);
});
hook.start();
FAQs
a simple Hook for making an OSC server
We found that hook.io-oscserver 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.