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.
binary-file-parser
Advanced tools
A binary file parser with internal buffer and caching system that lets you read virtually infinitely sized files.
A binary file parser with internal buffer and caching system that lets you read virtually infinitely sized files. Badly written, working, 90% asynchronous and still under development.
var Parser = require('binary-file-parser'),
opt = {path: 'path/to/file'},
parser = new Parser(opt);
parser.struct('Header', {
magic: 'string(4)',
id: 'short',
dataOffset: 'uint',
filesCount: 'uint'
});
parser.struct('Body', function (cache) {
var i,
files = [],
file = {};
parser.seek(cache.header.dataOffset);
for (i = 0; i < cache.header.structCount; i += 1) {
file.size = parser.uint();
file.bytes = parser.uint(file.size);
files.push(file);
}
return files;
});
parser.struct('myFile', {
header: 'Header',
data: 'Body'
});
parser.parse('myFile', function (err, data) {
console.log(data);
=> {
"header": {
"magic": "test",
"id": 434,
"dataOffset": 20,
"filesCount": 3
},
"data": [
{
"size": 56
"bytes": [23, 87, 21, 46, ...]
}
...
]
}
});
FAQs
A binary file parser with internal buffer and caching system that lets you read virtually infinitely sized files.
The npm package binary-file-parser receives a total of 0 weekly downloads. As such, binary-file-parser popularity was classified as not popular.
We found that binary-file-parser 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’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.