Kali 安装findmyhash

Kali 安装findmyhash

在升新版本的kali系统中,不自带findmyhash命令,因此需要自己下载安装

1
2
# git clone https://github.com/Talanor/findmyhash
# pip3 install -r findmyhash/dependencies.txt

安装所有的依赖包

1
# python3 hash-tool.py --help

使用python3 hash-tool.py algo list查看支持的加密算法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# python3 hash-tool.py algo list
CISCO7
GOST
JUNIPER
LM
MD2
MD4
MD5
RIPEMD128
RIPEMD160
RIPEMD256
RIPEMD320
SHA1
SHA224
SHA256
SHA384
SHA512
SNEFRU
SNEFRU256
WHIRLPOOL

使用

1
# python3 hash-tool.py crack -a MD5 e10adc3949ba59abbe56e057f20f883e

-f hash.txt批量查询

新建一个hash.txt

1
2
3
4
# vim hash.txt

e10adc3949ba59abbe56e057f20f883e
5f4dcc3b5aa765d61d8327deb882cf99
1
# python3 hash-tool.py crack -a MD5 -f hash.txt
-------------本文结束感谢您的阅读-------------