Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@eirslett/shoeset
Advanced tools
WARNING: This library is highly experimental, and may introduce breaking changes.
This is a 7z archive decompressor, written in Rust. The code is designed to be portable:
Supported decompression algorithms:
Features of 7z that are not supported:
The library is called "shoeset" because that's approximately how you pronounce "7z" in Norwegian.
Installation:
npm install @eirslett/shoeset
From Node.js:
import * as shoeset from '@eirslett/shoeset';
import fs from 'fs';
const archive = fs.readFileSync('foobar.7z');
const decompressed = shoeset.default.decompress(archive);
for (const file of decompressed.files) {
console.log('name', file.name);
console.log('data', file.data);
// If the file is UTF-8 encoded, we can log it as a string:
console.log(new TextDecoder().decode(file.data));
}
From the browser:
const js = import(`./node_modules/@eirslett/shoeset/shoeset.js`);
fetch('/foobar.7z').then(async response => {
const data = await response.arrayBuffer();
const mod = await js;
const result = mod.decompress(new Uint8Array(data));
for (const file of result.files) {
console.log('name', file.name);
console.log('data', file.data);
// If the file is UTF-8 encoded, we can log it as a string:
console.log(new TextDecoder().decode(file.data));
}
});
cargo build
to build the native binary, or ./build-npm.sh
to build the npm packagecargo test
to run the unit tests, or ./test.sh
to test the npm packageJust send me a pull request. I cannot guarantee that I have time to review it, if there are many PRs.
FAQs
A 7z decompression library
The npm package @eirslett/shoeset receives a total of 1 weekly downloads. As such, @eirslett/shoeset popularity was classified as not popular.
We found that @eirslett/shoeset 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
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.