
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.
Harō is a modern immutable DataStore built with ES6 features, which can be wired to an API for a complete feedback loop.
It is un-opinionated, and offers a plug'n'play solution to modeling, searching, & managing data on the client, or server
(in RAM). It is a partially persistent data structure, by maintaining version sets of records in versions
(MVCC).
haro-fs is a persistent storage adapter, providing 'auto saving' behavior, as well as the ability to save()
& load()
the entire DataStore.
If store.key
is not set, the fail over "id" field will be id
.
Require the adapter & register it with haro.register(key, fn)
. The key must match the store.adapters
key.
If iv
is specified, the file(s) on disk will contain ciphers, to be deciphered when loaded back into haro
.
It is safe to reuse the same folder, the file names will be a combination of store.id
+ record.key
.
var haro = require('haro'),
store;
// Configure a store to utilize the adapter
store = haro(null, {
adapters: {
fs: {
directory: '/path/to/files'
iv: ''
}
}
});
// Register the adapter
store.register('fs', require('haro-fs'));
// Ready to `load()`, `batch()` or `set()`!
Copyright (c) 2015 Jason Mulligan Licensed under the BSD-3 license
FAQs
File system persistent storage adapter for Harō
We found that haro-fs 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.