Error
可以试试进一步封装成 VirusTotal 查询命令行
执行 code $profile
写入:
function Search-VirusTotal{
Param(
[Parameter(Mandatory=$true)]
[string] $path
)
Start-Process "https://www.virustotal.com/gui/search/$((Get-FileHash $path).Hash)"
}
执行 Search-VirusTotal ./sample.exe
(在 PS6 后输入 s-vt
按下 tab
自动补全)弹出浏览器自动查找 VirusTotal 测试样本报告
参考: