TIL: How to generate checksum?
Checksums work like a fingerprint. It is used to verify file integrity. If the files have the same checksums, then they are identical. It can also be used to check if the file has been previously scanned as malicious.
On Windows:
-
certutil -hashfile <filepath> SHA256
-
Get-FileHash <filepath> -Algorithm SHA256
On Linux/macOS:
The file hash can also be checked on VirusTotal and InQuest
f29bc64a9d3732b4b9035125fdb3285f5b6455778edca72414671e0ca3b2e0de
ย