Skip to content

luisfontes19/hash-identifier-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published