cmd 里面的 certutil
Power Shell 里面的 Get-FileHash
用法: CertUtil [选项] -hashfile InFile [HashAlgorithm]
certutil -hashfile D:\1.txt
certutil -hashfile D:\1.txt md5
Get-FileHash D:\1.txt
Get-FileHash D:\1.txt -Algorithm md5
1
z775781 2020-02-09 15:02:46 +08:00
查看了一下帮助,发现 certutil 这个工具还挺强大的,
-decodehex -- 解码十六进制编码的文件 -decode -- 解码 Base64 编码的文件 -encode -- 将文件编码为 Base64 |
2
ThirdFlame 2020-02-09 15:04:14 +08:00
certutil 最大的作用是 当 wget/CURL 用。
|
3
geelaw 2020-02-09 15:09:08 +08:00
那么如何让 PowerShell 默认不要截断更长的 hash (如 SHA256、SHA384、SHA512 )的显示呢?
答案是修改默认显示格式 https://geelaw.blog/entries/ps-get-filehash-truncated/ |
4
whywhywhy 2020-02-10 17:30:21 +08:00 via Android
@ThirdFlame 搜了一下,还真有木马利用这个
|