
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.
@mightyplow/flags
Advanced tools
Utilites to manipulate single bits in a sequence of bits. This can be used to store specific boolean flags in a memory saving manor.
npm i @mightyplow/flags
Sets one or multiple flags on a sequence of bits.
Unsets one or multiple flags on a sequence of bits.
Checks one or multiple flags on a sequence of bits. Returns true, when all requested bits are set to 1.
Inverts one or multiple flags on a sequence of bits.
import { set } from '@mightyplow/flags'
const Option = {
foo: 2 ** 0,
bar: 2 ** 1,
baz: 2 ** 2
}
const base = 0b000;
console.log(set([Option.foo, Option.baz], base).toSting(2)) // "101"
import { isset } from '@mightyplow/flags'
const Option = {
foo: 2 ** 0,
bar: 2 ** 1,
baz: 2 ** 2
}
const hasFooAndBaz = (flags) => isset([Option.foo, Option.baz], flags)
console.log(hasFooAndBaz(0b101)) // true
console.log(hasFooAndBaz(0b001)) // false
FAQs
A utility to handle bitwise flags.
The npm package @mightyplow/flags receives a total of 0 weekly downloads. As such, @mightyplow/flags popularity was classified as not popular.
We found that @mightyplow/flags 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.