
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
climb-social
Advanced tools
JS library for interacting with the Climb.social API.
Provides an RxJS Observable of pages of approved items for use in JS applications.
Looking for simple HTML embed code? Try the react-climb-social. There's also angular-climb and a simple JSONP REST API for you to choose from.
The default exports of the module exposes a getStream
method that accepts a collectionId
which you can subscribe to.
npm install climb-social --save-dev
Make sure you've got a Climb.social account, you've made a new collection and you've approved some content.
Then note down your collectionId
.
var climb = require('climb-social');
var collectionId = '561ba63445284e1740e016f7';
climb
.getStream(collectionId)
.subscribe(function(items) {
// i.e. Do something with items:
items.map(function(item) {
console.log(item.author.username);
});
});
You can also specify how often you'd like to poll the Climb.social API for changes.
Pass a positive number (representing the number of seconds) as a second arg to getStream()
:
climb
.getStream(collectionId, 40)
.subscribe(function(items) {
...
});
});
FAQs
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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.