Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
buffermaker
Advanced tools
A convenient way of creating binary strings in node.js because Buffer is a bit too low-level for comfort in this regard.
Examples:
// unsigned varieties
var someBuffer = new BufferMaker()
.UInt8(1)
.UInt16BE(2)
.UInt32BE(3)
.Int64BE(4) // uses the BigNum library
.string("this is a test!")
.make();
// <Buffer 01 00 02 00 00 00 03 00 00 00 00 00 00 00 04 74 68 69 73 20 69 73 20 61 20 74 65 73 74 21>
// signed are also supported:
var someBuffer = new BufferMaker()
.Int8(1)
.Int16BE(2)
.Int32BE(3)
.Int64BE(4)
.make();
// <Buffer 01 00 02 00 00 00 03 00 00 00 00 00 00 00 04>
// others...
var someBuffer = new BufferMaker()
.UInt16LE(1)
.UInt32LE(2)
.Int16LE(3)
.Int32LE(4)
.FloatLE(5)
.FloatBE(6)
.DoubleLE(7)
.DoubleBE(8)
.make();
// <Buffer 01 00 02 00 00 00 03 00 04 00 00 00 00 00 a0 40 40 c0 00 00 00 00 00 00 00 00 1c 40 40 20 00 00 00 00 00 00>
FAQs
BufferMaker is a convenient way of creating binary strings
We found that buffermaker 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
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.