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.
chord2 is a ring-based peer-to-peer protocol.
$ npm install chord2
First you need to add a reference to chord2.
var Chord = require('chord2');
Then create a new node by calling the constructor function and specifying the host and the port to listen on.
Additionally, you need to specify a private key and a certificate. Please note that these values must be strings that contain data in .pem
format.
var chord = new Chord({
host: 'localhost',
port: 3000,
privateKey: '...',
certificate: '...'
});
Optionally you may specify a metadata
property to attach arbitrary data to a node. These metadata will be available to others when asking for information about the node. You may use it, e.g., to store information on services a node offers.
var chord = new Chord({
host: 'localhost',
port: 3000,
privateKey: '...',
certificate: '...',
metadata: {
foo: 'bar'
}
});
By default, a node tries to do housekeeping around every 30 seconds. If you need to change this, provide a property called serviceInterval
.
var chord = new Chord({
host: 'localhost',
port: 3000,
privateKey: '...',
certificate: '...',
serviceInterval: '10s'
});
Please note that this affects the way the protocol works. Hence setting the serviceInterval
property should be avoided in most cases.
To join another node, call the join
function and provide the host and the port of the node you want to join.
chord.join({
host: 'localhost',
port: 4000
}, function (err) {
// ...
});
To get the status of a node call its status
function.
console.log(chord.status());
// => 'lonely' or 'unbalanced' or 'joined'
If you want to find the node responsible for a value, call the getNodeFor
function and provide the value as a string.
As a result you will get information on the node itself as well as its metadata. If no metadata have been set, an empty object is returned.
chord.getNodeFor('foobar', function (err, node, metadata) {
// ...
});
To detect whether the successor or predecessor of a node changed, subscribe to the changed-successor
and changed-predecessor
events. Please note that the predecessor may be undefined
.
chord.on('changed-successor', function (successor) {
// ...
});
chord.on('changed-predecessor', function (predecessor) {
// ...
});
This module can be built using Grunt. Besides running the tests, this also analyses the code. To run Grunt, go to the folder where you have installed chord2 and run grunt
. You need to have grunt-cli installed.
$ grunt
The MIT License (MIT) Copyright (c) 2012-2015 the native web.
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
chord2 is a ring-based peer-to-peer protocol.
The npm package chord2 receives a total of 0 weekly downloads. As such, chord2 popularity was classified as not popular.
We found that chord2 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.