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.
Pure JavaScript GXChain websocket library for node.js and browsers. Can be used to easily connect to and obtain data from the GXB blockchain via public apis or local nodes.
Credit for the original implementation goes to jcalfee.
This library can be obtained through npm:
npm install gxbjs-ws
Browser bundles are provided in /build/, for testing purposes you can access this from rawgit:
<script type="text/javascript" src="https://cdn.rawgit.com/gxchain/gxbjs-ws/build/gxbjs-ws.js" />
A variable gxbjs_ws will be available in window.
For use in a webpack/browserify context, see the example below for how to open a websocket connection to the Openledger API and subscribe to any object updates:
var {Apis} = require("gxbjs-ws");
Apis.instance("wss://node1.gxb.io",true).init_promise.then((res) => {
console.log("connected to:", res[0].network);
Apis.instance().db_api().exec( "set_subscribe_callback", [ updateListener, true ] )
});
function updateListener(object) {
console.log("set_subscribe_callback:\n", object);
}
The set_subscribe_callback
callback (updateListener) will be called whenever an object on the blockchain changes or is removed. This is very powerful and can be used to listen to updates for specific accounts, assets or most anything else, as all state changes happen through object updates. Be aware though that you will receive quite a lot of data this way.
FAQs
Pure JavaScript GXChain websocket interface for node.js and browsers.
The npm package gxbjs-ws receives a total of 0 weekly downloads. As such, gxbjs-ws popularity was classified as not popular.
We found that gxbjs-ws demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.