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.
TypeScript library built for Node backends to create ZIP files with password protection
Zipster aims to enable developers to easily create password-protected ZIP files. This library relies on a combination of other libraries to function correctly as well as built-in Node functionality.
Although the core behind Zipster is password-protected ZIP files, you can also create passwordless ZIP files and pass in a number of different options to configure how your ZIP files are created.
This project is still in development. Please report any bugs or feature requests as an issue.
Use the following command to install the package:
npm i zipster
The following example will create a password-protected ZIP file called protected.zip
in the execution directory,
containing the test.csv
with the password to access the ZIP being foo-fighters
.
const fileToZip = './src/test.csv'
const options: Options = {
format: Formats.ZIP_ENCRYPTABLE,
password: 'foo-fighters',
output: {
name: 'protected',
directory: __dirname
}
}
const zipster = new Zipster()
zipster.create(fileToZip, options)
.then((outputDirectory: string) => console.log({ outputDirectory }, 'Successfully created ZIP'))
FAQs
TypeScript library built for Node backends to create ZIP files with password protection
The npm package zipster receives a total of 44 weekly downloads. As such, zipster popularity was classified as not popular.
We found that zipster 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.