1.0.1 • Published 3 years ago

hash-identifier v1.0.1

Weekly downloads
49
License
MIT
Repository
-
Last release
3 years ago

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