luisfontes19 / hash-identifier-js

Identifies the algorithm used to generate the supplied hash

Home Page:https://www.npmjs.com/package/hash-identifier

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hash Identifier

This project is a port of python project hash-identifier

Identifies the algorithm used to generate the supplied hash

Usage

const HashIdentifier = require('hash-identifier');

checkAlgorithm

HashIdentifier.checkAlgorithm("ae11fd697ec92c7c98de3fac23aba525");

//output:
// [
//   'MD5',
//   'Domain Cached Credentials - MD4(MD4(($pass)).(strtolower($username)))',
//   'RAdmin v2.x',
//   'NTLM',
//   'MD4',
//   'MD2',
//   'Haval-128',
//   'RipeMD-128',
//   'SNEFRU-128',
//   'Tiger-128'
// ]

The output is sorted by the most relevant algorithms

supportedAlgorithms

List all supported algorithms

HashIdentifier.supportedAlgorithms()

VSCode

You can use this script in VSCode with the Swissknife extension

About

Identifies the algorithm used to generate the supplied hash

https://www.npmjs.com/package/hash-identifier

License:MIT License


Languages

Language:JavaScript 100.0%