答案 0 :(得分:25)
提到signtool的答案中重要的缺失部分是:
是的,使用众所周知的signtool.exe,如果文件已签名,您也可以找到它。无需下载其他工具!
E.g。简单的一行:
signtool verify /pa myfile.exe
if %ERRORLEVEL% GEQ 1 echo This file is not signed.
(对于详细输出,请在'/ pa'之后添加'/ v'。)
有人可能会问:为什么这很重要?我只是签署了文件(再次),这些文件应该签名并且有效。
我的目标是保持构建清洁,不要再次签署文件,因为不仅日期已更改,而且之后的二进制文件也不同。
商业示例: 我的客户有一个简化的自动化“dev ops”类型构建和后期构建过程。不同的文件集有多个来源,最后都是构建,测试和捆绑到分发 - 并且为此必须签署一些文件。为了保证某些文件不会在没有签名的情况下离开本机,我们就会签署所有重要文件,即使这些文件已经签名。
但这还不够干净:
1)如果我们再次签署一个已经签名的文件,则文件日期和二进制指纹会发生变化,如果只是简单地复制了文件,那么该文件就会失去与其来源的可比性。 (至少如果您使用时间戳签名,我们总是这样做,我认为强烈建议。)
这是严重的质量损失,因为此文件不再与其他文件来源的前辈相媲美。
2)如果我们再次签署文件,这也可能是一个错误,它是第三方文件,不应由您的单位签名。
根据前面提到的“signtool verify”调用的返回代码,你可以通过使签名本身成为条件来避免这两种情况。
答案 1 :(得分:24)
答案 2 :(得分:12)
如果需要外部工具,可以使用signtool.exe。它是Windows SDK的一部分,它接受命令行参数,您可以在此处找到更多相关信息,http://msdn.microsoft.com/en-us/library/aa387764.aspx
答案 3 :(得分:9)
我在网络here上找到了另一个选项(纯.Net代码)。
代码非常简单且有效。
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
internal class Program
{
private static void Main(string[] args)
{
string filePath = args[0];
if (!File.Exists(filePath))
{
Console.WriteLine("File not found");
return;
}
X509Certificate2 theCertificate;
try
{
X509Certificate theSigner = X509Certificate.CreateFromSignedFile(filePath);
theCertificate = new X509Certificate2(theSigner);
}
catch (Exception ex)
{
Console.WriteLine("No digital signature found: " + ex.Message);
return;
}
bool chainIsValid = false;
/*
*
* This section will check that the certificate is from a trusted authority IE
* not self-signed.
*
*/
var theCertificateChain = new X509Chain();
theCertificateChain.ChainPolicy.RevocationFlag = X509RevocationFlag.ExcludeRoot;
/*
*
* Using .Online here means that the validation WILL CALL OUT TO THE INTERNET
* to check the revocation status of the certificate. Change to .Offline if you
* don't want that to happen.
*/
theCertificateChain.ChainPolicy.RevocationMode = X509RevocationMode.Online;
theCertificateChain.ChainPolicy.UrlRetrievalTimeout = new TimeSpan(0, 1, 0);
theCertificateChain.ChainPolicy.VerificationFlags = X509VerificationFlags.NoFlag;
chainIsValid = theCertificateChain.Build(theCertificate);
if (chainIsValid)
{
Console.WriteLine("Publisher Information : " + theCertificate.SubjectName.Name);
Console.WriteLine("Valid From: " + theCertificate.GetEffectiveDateString());
Console.WriteLine("Valid To: " + theCertificate.GetExpirationDateString());
Console.WriteLine("Issued By: " + theCertificate.Issuer);
}
else
{
Console.WriteLine("Chain Not Valid (certificate is self-signed)");
}
}
}
}
答案 4 :(得分:2)
此外,您可以尝试使用npm package %
来实现此目的。
此软件包实现了WinVerifyTrust API,使用简单:
sign-check
答案 5 :(得分:1)
从Powershell 5.1开始,您可以使用Get-AuthenticodeSignature来验证二进制文件或PowerShell脚本的签名。
> Get-AuthenticodeSignature -FilePath .\MyFile.exe
SignerCertificate Status Path
----------------- ------ ----
A59E92E31475F813DDAF41C3CCBC8B78 Valid MyFile.exe
或
> (Get-AuthenticodeSignature -FilePath .\MyFile.exe).Status
Valid
答案 6 :(得分:-1)