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.
Library built in [Typescript](https://www.typescriptlang.org/) to load/handle a bitmap file. Support 1, 2, 4, 8, 16(no tested) and 24 bpp. The following functions are available: - read(File) - negative() - rotate90CW() - rotate90CCW() - rotate180() - rota
A typescript library for loading, transforming, and filtering BMP images, directly from the browser. This is a port from RequireJS to NPM (https://github.com/testica/bitmap-ts).
$ npx install bitmap-ts
OR
$ yarn add bitmap-ts
import { Bitmap } from 'bitmap-ts';
const handleFileChange = (event: React.ChangeEvent<HTMLInputElement>) => {
const file: File = event.target.files![0];
const bmp = new Bitmap(file);
bmp.read((response: Bitmap) => {
this.imageData = response.currentData();
});
const image = new Image();
image.onload = () => {
this.imageHeight = image.height;
this.imageWidth = image.width;
};
image.src = URL.createObjectURL(file);
}
Credits: Leonardo Testa & Carlos Abreu
FAQs
Library built in [Typescript](https://www.typescriptlang.org/) to load/handle a bitmap file. Support 1, 2, 4, 8, 16(no tested) and 24 bpp. The following functions are available: - read(File) - negative() - rotate90CW() - rotate90CCW() - rotate180() - rota
The npm package bitmap-ts receives a total of 0 weekly downloads. As such, bitmap-ts popularity was classified as not popular.
We found that bitmap-ts 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.