Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
A JavaScript library to use ICO. Works on both Node.js and the browser.
npm install icojs
import { isICO, parseICO } from 'icojs';
import { isICO, parseICO } from 'icojs/browser';
or
<script type="text/javascript" src="node_modules/icojs/dist/ico.js"></script>
To fully use this library, browsers must support JavaScript typed arrays, Canvas API and Promise. Chrome, Edge 12, Firefox and Safari 9 support these functions.
import { readFile, writeFile } from 'node:fs/promises';
import { parseICO } from 'icojs';
const buffer = await readFile('favicon.ico');
const images = await parseICO(buffer, 'image/png');
// save as png files
images.forEach(image => {
const file = `${image.width}x${image.height}-${image.bpp}bit.png`;
const data = Buffer.from(image.buffer);
writeFile(file, data);
});
<input type="file" id="input-file" />
<script>
document.getElementById('input-file').addEventListener('change', evt => {
// use FileReader for converting File object to ArrayBuffer object
var reader = new FileReader();
reader.onload = async e => {
const images = await ICO.parseICO(e.target.result);
// logs images
console.dir(images);
};
reader.readAsArrayBuffer(evt.target.files[0]);
}, false);
</script>
https://egy186.github.io/icojs/#demo
boolean
⏏Promise.<Array.<ParsedImage>>
⏏boolean
⏏Check the ArrayBuffer is valid ICO.
Kind: global method of ICO
Returns: boolean
- True if arg is ICO.
Param | Type | Description |
---|---|---|
source | ArrayBuffer | Buffer | ICO file data. |
Promise.<Array.<ParsedImage>>
⏏Parse ICO and return some images.
Kind: global method of ICO
Returns: Promise.<Array.<ParsedImage>>
- Resolves to an array of ParsedImage.
Param | Type | Default | Description |
---|---|---|---|
buffer | ArrayBuffer | Buffer | ICO file data. | |
[mime] | string | "image/png" | MIME type for output. |
object
Kind: global typedef
Properties
Name | Type | Description |
---|---|---|
width | number | Image width. |
height | number | Image height. |
bpp | number | Image color depth as bits per pixel. |
buffer | ArrayBuffer | Image buffer. |
MIT license
FAQs
parse ico file
The npm package icojs receives a total of 882 weekly downloads. As such, icojs popularity was classified as not popular.
We found that icojs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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 researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.