
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.
A carefuly created set of bindings to present an easy way to retrieve data from RethinkDB instances.
Rethinkly is a collection of methods to make more literal and legible gathering data from rethink into JavaScript applications. Supports node and browser.
Rethink. Again.
- $ yarn add rethinkly
- $ npm i rethinkly --save
import rethinkly from 'rethinkly'
const dbConfig = {
host: 'localhost',
port: 32769,
db: 'the_database'
};
const instance = rethinkly(dbConfig);
retrieveData
const rethinkly = require('rethinkly')
const instance = rethinkly(dbConfig)
// Select your database
instance.selectDB('rethinkly');
// Get your data as list
const users = instance.retrieveData('users')
/** output
[
{
id: 'a3bbd8e3-b53f-4ecd-bab9-6c65cfcf931b',
name: 'Caio Alcantara',
nickname: 'caio',
role: '99bd6af9-922e-4787-a97d-3d915f60e65b'
}
]
*/
/**
* Match your results using where clause
*/
const users = instance.retrieveData('users', { role: '99bd6af9-922e-4787-a97d-3d915f60e65b' })
/**
* Implicit byId
*/
const users = instance.retrieveData('users', 'a3bbd8e3-b53f-4ecd-bab9-6c65cfcf931b')
/** output
[
{
id: 'a3bbd8e3-b53f-4ecd-bab9-6c65cfcf931b',
name: 'Caio Alcantara',
nickname: 'caio',
role: '99bd6af9-922e-4787-a97d-3d915f60e65b'
}
]
*/
FAQs
a library to make easier the operations handling in rethinkdb
The npm package rethinkly receives a total of 1 weekly downloads. As such, rethinkly popularity was classified as not popular.
We found that rethinkly 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
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.