
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
trackthis-ecdsa
Advanced tools
cross-compiled javascript implementation of ed25519 based on supercop-ref10
ed25519 signature generation and verification
npm install --save trackthis-ecdsa
const lib = require('trackthis-ecdsa');
const seed = lib.createSeed();
const keypair = await lib.createKeyPair(seed);
const msg = Buffer.from('hello there');
const sig = await keypair.sign(msg);
console.log(await keypair.verify(sig, msg)); // true
const lib = require('trackthis-ecdsa');
const fs = require('fs');
const seed = lib.createSeed();
const keypair = await lib.createKeyPair();
fs.writeFileSync('keys.json', JSON.stringify({
publicKey: keypair.publicKey.toString('base64'),
secretKey: keypair.secretKey.toString('base64'),
});
const lib = require('trackthis-ecdsa');
const fs = require('fs');
const base64keys = require('./keys.json');
const keypair = lib.keyPairFrom({
publicKey: Buffer.from(base64keys.publicKey, 'base64'),
secretKey: Buffer.from(base64keys.secretKey, 'base64'),
});
Generates 32-byte seed using Math.random
. Using a different random-generator
which is cryptographically secure is strongly advised.
Generates a keypair containing the .sign
and .verify
functions
Generates a keypair from the provided 32-byte seed with the following properties:
seed
- a 32-byte byfferkeypair.publicKey
- A 32-byte public key as a bufferkeypair.secretKey
- A 64-byte secret key as a bufferkeypair.sign
- Function to sign a message using the keypairkeypair.verify
- Function to verify a signature using the keypairSign a message using the given keypair.
msg
- A buffer representing the messagepublicKey
- A 32-byte public key as a buffersecretKey
- A 64-byte secret key as a buffersignature
- A 64-byte bufferTODO
TODO
TODO
FAQs
cross-compiled javascript implementation of ed25519 based on supercop-ref10
We found that trackthis-ecdsa 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.