An open API service indexing awesome lists of open source software.

https://github.com/fr0gger/hash.py

hash.py is a python script that calculates a fingerprint (MD5, SHA256, SHA512). The script also allows you to compare two fingerprints to check if it is consistent. It can be used in digital forensics.
https://github.com/fr0gger/hash.py

Last synced: 28 days ago
JSON representation

hash.py is a python script that calculates a fingerprint (MD5, SHA256, SHA512). The script also allows you to compare two fingerprints to check if it is consistent. It can be used in digital forensics.

Awesome Lists containing this project

README

        

hash.py
=======

hash.py is a python script that calculates a fingerprint (MD5, SHA256, SHA512). The script also allows you to compare two fingerprints to check if it is consistent. It can be used in digital forensics.

Example :

r1tch1e@forensic:~$ python hash.py -f /home/myfile -md5

r1tch1e@forensic:~$ python hash.py -f /home/myfile -msx

r1tch1e@forensic:~$ python hash.py -c file1 file2 -md5

r1tch1e@forensic:~$ python hash.py -c file1 file2 -msx

@r1tch1e_