Jun 29, 2026 by Thibault Debatty | 28 views
https://cylab.be/blog/512/unveiling-hashes-with-name-that-hash
In the world of cybersecurity, understanding and identifying hash types is a crucial skill. This allows for example to run cracking tools like hashcat or John-the-Ripper with the proper parameters. In this blog post I’ll introduce a handy tool called name-that-hash that simplifies this process. This open-source tool helps you identify the type of a hash and even suggests the appropriate mode for cracking tools like Hashcat and John-the-Ripper.
Easiest way to install name-that-hash is by using pipx:
pipx install name-that-hash
You can find more info about pipx in our other blog post Pip, pipx, pipenv … what the pip?
Now you can use Name-That-Hash with `nth –text ‘’.
The nice addition is that name-that-hash also shows the mode that must be used with cracking tools hashcat and John-the-Ripper.
Which means you can now try to crack the hash with something like
hashcat -a 3 -m 0 57ee582c996aa07abbd66a71bdef80cb 10k-most-common.txt
Where -a 3 allows to select the brute-force attack mode.
In conclusion, name-that-hash is an invaluable tool for anyone working in cybersecurity, particularly those involved in password cracking and hash analysis. Its simplicity and effectiveness in identifying hash types and suggesting appropriate cracking modes make it a must-have in your toolkit.
This blog post is licensed under
CC BY-SA 4.0
Red Teaming Offensive Security
If you’re planning to perform an ARP spoofing attack, you’ve probably encountered bettercap. If you’ve already set up a lab to experiment with ARP spoofing, you may have stumbled upon an issue where the internet is not reachable on your target. In this post, we’ll explore the root cause of this issue and provide a step-by-step guide to resolve it.Linux eBPF Offensive Security
Linux Offensive Security eBPF