Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
An NPM for manipulating bit masks
Just a convenient abstraction for computing bitmasks, such as file permissions.
var BitMask = require('bit-mask');
Declare a new BitMask with an initial value
var mask = new BitMask(value, [base]);
Set a particular bit with a boolean
mask.setBit(position, value)
get the boolean value of a particular bit
mask.getBit(position)
get the bits as a string of binary digits
maks.bits()
Declare a new Ownership Mask with an initial value
var mask = new BitMask.OwnershipMask(value);
Then you have all the functions from the BitMask plus you can get the permissions in a more readable way with:
mask.hasPermission(context, permission)
where context is 'user', 'group' or 'world' and permission is 'read', 'write', 'execute' and a corresponding set:
mask.setPermission(context, permission, value)
as well as a modify function which allows you to pass chmod style modifier strings as well as integer values.
mask.modify('ugo+rwx')
mask.modify(755);
Run the tests at the project root with:
mocha
Enjoy,
-Abbey Hawk Sparrow
FAQs
A utility for manipulating bit masks
The npm package bit-mask receives a total of 8,970 weekly downloads. As such, bit-mask popularity was classified as popular.
We found that bit-mask 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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.