Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
aligned-block-file
Advanced tools
read and write to a file in a cache-friendly way by using aligned blocks.
read and write to a file in a cache-friendly way by using aligned blocks.
This module provides an interface to read arbitary buffers from a file, and manages it as a series of aligned buffers. This allows you to write high performance binary file formats, where many reads do not necessarily mean many fs reads.
create an instance, block_size
is the size of the underlying block.
I suggest 1024 or 4096 or some multiple of your OS block size.
flags
is passed to fs.open
read a buffer from the file. If the range is already in the cache
cb
will be called synchronously.
read a UInt32BE from the file. (cb
may be sync, if the buffer is already in cache)
read a UInt48BE from the file. (cb
may be sync, if the buffer is already in cache)
read a UInt64BE from the file, since javascript numbers are restricted to double
this will only set the first 53 bits. Take care with your 53 bit int! if you use bitwise
operations it will collapse back to 32 bit, you need to use *2
instead of << 1
, etc.
(cb
may be sync, if the buffer is already in cache)
an observable of the files size.
an observable of the end of the file
append buf
to the file.
this must not be called again until the previous call has returned.
updated values for size and offset will be triggered immediately before the cb
is called.
shorten the file to length
removing anything after that point.
MIT
FAQs
read and write to a file in a cache-friendly way by using aligned blocks.
The npm package aligned-block-file receives a total of 213 weekly downloads. As such, aligned-block-file popularity was classified as not popular.
We found that aligned-block-file demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.