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.
- Host: GitHub
- URL: https://github.com/fr0gger/hash.py
- Owner: fr0gger
- License: gpl-3.0
- Created: 2014-01-30T20:45:50.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-30T21:03:49.000Z (over 11 years ago)
- Last Synced: 2023-08-12T17:07:42.044Z (almost 2 years ago)
- Language: Python
- Size: 164 KB
- Stars: 9
- Watchers: 2
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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_