Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
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 4,476 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.