
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.
async-multipart-iterator
Advanced tools
Iterate the parts of an RFC 1528 multipart (multipart/mixed, multipart/alternative, multipart/digest, multipart/parallel) document, sequentially producing a header and a body iterator for each part.
'use strict'
const someInputFile = 'something'; // name of a multipart file to be parsed
const someOutputDir = '/tmp/something'; // name of a directory in which bodies of each of the parts will be written
const boundary = 'cd67d1a112145bdcfdce0c5839b36b53'; // the boundaries to be found in the input file
const fs = require('fs');
const {multipartIterator} = require('async-multipart-iterator');
async function main() {
const input = fs.createReadStream(someInputFile);
let count = 0;
for await (let [header, bodyIterator] of multipartIterator(boundary, input)) {
// here for each part of the document
console.log(header) // right now just an array of unparsed lines from the part's header
const stream = fs.createWriteStream(`{someOutputFile}/${count++}`);
for await (let chunk of bodyIterator) {
await new Promise( (res,rej) => stream.write(chunk, res));
}
await new Promise( (res,rej) => stream.end(res));
}
}
main().catch(console.error)
FAQs
Iterate over the parts of a multipart document
We found that async-multipart-iterator 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.