名称: EV代码签名证书验证器 描述: 验证EV代码签名证书链和时间戳以确保Windows SmartScreen兼容性 允许使用的工具: Read, Grep, Bash 标签: [windows, 代码签名, ev证书, 安全, 验证]
EV代码签名证书验证器
验证EV(扩展验证)代码签名证书链和时间戳,以确保Windows SmartScreen兼容性。
功能
- 验证证书链有效性
- 检查时间戳存在性和有效性
- 验证EV证书属性
- 检查证书过期情况
- 验证签名算法强度
- 验证发布者信息
输入模式
{
"type": "object",
"properties": {
"signedFile": { "type": "string" },
"checkSmartScreen": { "type": "boolean", "default": true }
},
"required": ["signedFile"]
}
验证命令
# 验证带链的签名
signtool verify /pa /all /v signed.exe
# 检查证书详细信息
certutil -dump signed.exe
# 验证时间戳
signtool verify /pa /tw signed.exe
相关技能
windows-authenticode-signercode-signing-setup流程