Suma de verificación (checksum)
Última actualización
find / -type f -exec md5sum {} + | tee /tmp/temp.txt | grep <md5-hash># certutil
## MD5
certutil.exe -hashfile <file> MD5
## SHA-1
certutil.exe -hashfile <file>
## SHA-256
certutil.exe -hashfile <file> SHA256
## SHA-512
certutil.exe -hashfile <file> SHA512
# PowerShell
## MD5
Get-FileHash <file> -Algorithm MD5 | Format-List
## SHA-1
Get-FileHash <file> -Algorithm SHA1 | Format-List
## SHA-256
Get-FileHash <file> | Format-List
## SHA-512
Get-FileHash <file> -Algorithm SHA512 | Format-List