Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
buffercursor
Advanced tools
A simple way to traverse a Buffer like a cursor, updating position along the way
This is a simple module that allows you to traverse a Buffer iteratively. You
can read and write different types and the cursor's position will update with
the proper size, which you can see through .tell()
you can also
.seek()
var bc = new BufferCursor(buffer);
bc.readUInt16BE();
bc.readUInt8();
bc.readUInt32BE();
console.log(bc.tell());
Will output 7
For the most part BufferCursor
and Buffer
share the same methods, there's
just a slight alteration in method signature, none of the methods take an
offset.
So .readUInt16LE(10)
in Buffer
is equivalent to bs.seek(10); bs.readUInt16LE();
All read[U]Int
and write[U]Int
methods are reproduced, as are toString
,
write
, fill
, and slice
. All of these methods will move the cursor through
the stream and do not take an offset parameter, where an end
parameter would
normaly be used, here you supply a length
.
The following are additional methods:
seek(value)
-- Seek to an arbitrary position in the streamtell()
-- Return the current location in the streameof()
-- Return true if at the end of the streamtoByteArray([method])
-- This is a special helper method which will return
the entire stream (i.e. from the start) as an array of numbers.readUInt8
but you can pass in any
read[U]Int[8,16,32][LE,BE]
to change what the array is made of.buffer
-- Access to the raw buffer.length
-- The size of the bufferFAQs
A simple way to traverse a Buffer like a cursor, updating position along the way
The npm package buffercursor receives a total of 15,891 weekly downloads. As such, buffercursor popularity was classified as popular.
We found that buffercursor 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
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.