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.
KwirK aims to be a sophisticated, multi-network, multi-protocol utility bot that can act as a bridge between popular services.
npm install kwirk [--save]
or
clone the repo: git clone https://github.com/jfrazx/KwirK/
If you haven't setup your environment:
npm install -g typescript tsd
npm install
tsd install
( the node.d.ts file I'm using is modified, if it gets overwritten... )
IRC is mostly stable, but with little other than providing building blocks. Emitted events will (eventually) be catalogued appropriately. In the interim take a look at the defined IRC Constants (/src/constants/constants.ts) IRC to IRC binding appears to be working well.
var Kwirk = require( 'kwirk' )
, bot = new Kwirk.Bot();
var freenode = {
type: 'irc',
name: 'freenode',
servers: [
{
host: 'adams.freenode.net',
port: 7000, // defaults to 6667
ssl: true, // default to false
enable: false // defaults to true
},
{
host: 'asimov.freenode.net',
port: 7000,
ssl: true
}
],
channels: [
{
name: '#bot-playground',
}
]
};
var efnet = {
type: 'irc',
name: 'efnet',
servers: [
{
host: 'efnet.port80.se',
},
{
host: 'irc.swepipe.se',
}
],
channels: [
{
name: '#kwirk',
}
],
nick: 'KwirKBot', // defaults to 'kwirk'
}
var server = {
host: 'irc.choopa.net',
port: 9999,
ssl: true
};
bot
.addNetwork( freenode )
.addNetwork( efnet, function( err, network ) {
network.addServer( server, function( err, server ) {
server.disable();
});
});
// this is binding to the efnet network and the #kwirk channel
bot.network['efnet'].bind({
source_channel: '#kwirk',
// the target will be freenode network and the #bot-playground channel
target_network: 'freenode',
target_channel: '#bot-playground',
prefix_source: true
})
// reject, accept and map will all be passed a message object
.reject( function( message ) {
return message.content.match(/^\+?!\w+/);
})
// opposing bind will be created, true value will inherit rejects, accepts and maps
.opposing( true )
.prefix_source = false;
bot.start();
FAQs
KwirK, a sophisticated multi-network, multi-protocol bot, (eventually).
The npm package kwirk receives a total of 0 weekly downloads. As such, kwirk popularity was classified as not popular.
We found that kwirk 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.