Kali 安装findmyhash
在升新版本的kali系统中,不自带findmyhash命令,因此需要自己下载安装
1 | # git clone https://github.com/Talanor/findmyhash |
安装所有的依赖包
1 | # python3 hash-tool.py --help |
使用python3 hash-tool.py algo list
查看支持的加密算法
1 | # python3 hash-tool.py algo list |
使用
1 | # python3 hash-tool.py crack -a MD5 e10adc3949ba59abbe56e057f20f883e |
-f hash.txt批量查询
新建一个hash.txt
1 | # vim hash.txt |
1 | # python3 hash-tool.py crack -a MD5 -f hash.txt |