
Security Fundamentals
Turtles, Clams, and Cyber Threat Actors: Shell Usage
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
async-image-hash
Advanced tools
A wrapper around block-hash to easily hash a local or remote file with Node.
Supports JPG, PNG and WebP
npm i image-hash
const { imageHash }= require('image-hash');
// remote file simple
imageHash('https://ichef-1.bbci.co.uk/news/660/cpsprodpb/7F76/production/_95703623_mediaitem95703620.jpg', 16, true).then(data => {
console.log(data);
// 0773063f063f36070e070a070f378e7f1f000fff0fff020103f00ffb0f810ff0
});
//local file
imageHash('./_95695590_tv039055678.jpg', 16, true).then(data => {
console.log(data);
// 0773063f063f36070e070a070f378e7f1f000fff0fff020103f00ffb0f810ff0
});
//Buffer
const fBuffer = fs.readFileSync(__dirname + '/example/_95695591_tv039055678.jpeg');
imageHash({
ext: 'image/jpeg',
data: fBuffer
}, 16, true).then(data => {
console.log(data);
// 0773063f063f36070e070a070f378e7f1f000fff0fff020103f00ffb0f810ff0
});
//Buffer, without ext arg
const fBuffer = fs.readFileSync(__dirname + '/example/_95695591_tv039055678.jpeg');
imageHash({
data: fBuffer
}, 16, true).then(data => {
console.log(data);
// 0773063f063f36070e070a070f378e7f1f000fff0fff020103f00ffb0f810ff0
});
// name
imageHash(location, bits, precise);
// types
imageHash(string|object, int, bool): Promise<string>;
Image hash will log out warnings if environment variable VERBOSE
is set to true.
Argument | Type | Description | Mandatory | Example |
---|---|---|---|---|
location | object or string | Buffer object (See input types below for more details), or String with a valid url or file location | Yes | see above |
bits | int | The number of bits in a row. The more bits, the more unique the hash. | Yes | 8 |
precise | bool | Whether a precision algorithm is used. true Precise but slower, non-overlapping blocks. false Quick and crude, non-overlapping blocks. Method 2 is recommended as a good tradeoff between speed and good matches on any image size. The quick ones are only advisable when the image width and height are an even multiple of the number of blocks used. | Yes | true |
// Buffer Object
interface BufferObject {
ext?: string, // mime type of buffered file
data: Buffer,
name?: string // file name for buffered file
};
The hard bit of this comes with thanks from commonsmachinery for blockhash-js
Distributed under an MIT license
FAQs
Create a hash from an image
The npm package async-image-hash receives a total of 1 weekly downloads. As such, async-image-hash popularity was classified as not popular.
We found that async-image-hash 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.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
Security News
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.