
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.
@gasbuddy/kms-crypto
Advanced tools
Crytography operations that use Amazon Key Management Service, with reasonable development time proxies
The kms-crypto module creates a generic interface for Key Management Services which allows reasonably flexible usage between true cloud providers (currently only AWS) and local encryption (mostly for development).
The key resource name is used to differentiate between the service providers, and the service provider is embedded in encrypted values (e.g. ciphertext). PLEASE NOTE - the examples use null:whatever
but DO NOT USE THAT IN PRODUCTION CODE. Your key should start with kms:
and you should get that key ARN from the ops team.
import assert from 'assert';
import { createKmsCryptoProvider } from '@gasbuddy/kms-crypto';
(async () => {
const kms = createKmsCryptoProvider({});
const encBlob = kms.encrypt('null:whatever', 'somethingunique', 'testing123');
const decBlob = kms.decrypt('somethingunique', encBlob);
assert.equals(decBlob.toString(), 'testing123');
})();
FAQs
Crytography operations that use Amazon Key Management Service, with reasonable development time proxies
We found that @gasbuddy/kms-crypto demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
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.