
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.
Kill many (figurative) birds with one (literal) return value.
Let's imagine that we've written an application that needs to serve thousands of requests per second. Additionally, this application needs to retrieve mostly-static data from an external service. At any given moment, it is probably making 50 calls to this external service using exactly the same input arguments. For ex:
// The application is currently waiting for 50 occurrences of this Promise to resolve.
const data = await externalService.getData("foo", "bar");
Since the data returned by this external service is mostly-static, it means that all 50 Promises will most likely resolve to exactly the same value. Therefore, we really don't need to make 50 separate calls to the service. Instead, we really only need to make 1 call to the service; afterwards, this one response can be used to resolve all 50 Promises.
In short: we can kill many (figurative) birds with one (literal) return value.
npm install many-birds
const { Fulfiller } = require('many-birds');
let x = 0;
const getToken = Fulfiller(async function() {
return x++;
});
async function run() {
const tokens1 = await Promise.all([
getToken(), getToken(), getToken("foo"), getToken("bar"), getToken("foo"),
]);
console.log(tokens1); // Prints: [0, 0, 1, 2, 1]
const tokens2 = await Promise.all([
getToken(), getToken("foo"), getToken("foo", "bar"), getToken("foo"),
]);
console.log(tokens2); // Prints: [3, 4, 5, 4]
}
run();
Or, if you're using decorators:
const { ManyBirds } = require('many-birds');
let x = 0;
const foo = {
@ManyBirds()
getToken() {
return x++;
}
}
FAQs
Kill many (figurative) birds with one (literal) return value
We found that many-birds 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.