Windows 7,数字签名驱动程序显示警告:Windows无法验证此驱动程序软件的发布者

时间:2018-01-02 13:32:35

标签: windows digital-signature drivers kernel-mode driver-signing

我正在尝试安装一个结构简单的Windows USB驱动程序(仅包含以下内容 -

  • app.inf,
  • app.cat
  • WdfCoInstaller01005.dll
  • WinUSBCoInstaller.dll

)。  使用Digicert颁发的有效标准内核模式代码签名证书对驱动程序进行 sha 256 签名。当我看到文件的属性时,我可以在 app.cat 文件中看到数字签名。 我正在尝试通过安装了所有最新更新的Windows 7 SP1 64位计算机中的 install-shield 设置安装驱动程序(包括 KB3033929 )。它仍然显示警告 Windows无法验证此驱动程序软件的发布者。

为了排除故障,我尝试在目标计算机上安装证书,作为Stackoverflow link建议之一。仍然没有希望。

我在生成.cat文件和签名.cat文件的过程中使用了以下命令。 (没有.sys文件)

Inf2Cat /driver:"C:\CodeSigning" /os:7_X64,7_X86

C:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x64>signtool.exe si
gn /v /ac "C:\CodeSigning\DigiCert High Assurance EV Root CA.crt"  /a /t ht
tp://timestamp.digicert.com  "C:\CodeSigning\Driver\app.cat"

编辑添加更多信息。

Digital Signature Information

Error while installing the driver

我也尝试过Sha256签名(参考https://www.digicert.com/code-signing/driver-signing-in-windows-using-signtool.htm(部分:Internet Explorer或Chrome for Windows)

signtool sign /v /ac "C:\path\DigiCert High Assurance EV Root CA.crt" /a /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\path\to\FileToSign.cat"

我仍然遇到同样的错误。

编辑2-添加Inf文件的来源

请参阅下面 .inf 文件的来源(可能是一点遗产)。

[Version]
Signature = "$Windows NT$"
Class =XYZdevice
ClassGuid={ad769fbf-c592-4b8c-940a-6e3782a545e8}
Provider = %ProviderName%
DriverVer=10/13/2017,6.00.2064
CatalogFile=%MFGFILENAME%.cat

; ========== Manufacturer/Models sections ===========

[Manufacturer]
%ProviderName% = XYZInc,NTx86,NTamd64

[XYZInc.NTx86]
%USB\MyDevice.DeviceDesc% =USB_Install, USB\VID_1448&PID_4AC0&REV_0001

[XYZInc.NTamd64]
%USB\MyDevice.DeviceDesc% =USB_Install, USB\VID_1448&PID_4AC0&REV_0001

; =================== Installation ===================

[ClassInstall32]
AddReg=SampleClass_RegistryAdd

[SampleClass_RegistryAdd]
HKR,,,,%ClassName%


;[1]
[USB_Install]
Include=winusb.inf
Needs=WINUSB.NT

;[2]
[USB_Install.Services]
Include=winusb.inf
AddService=WinUSB,0x00000002,WinUSB_ServiceInstall

;[3]
[WinUSB_ServiceInstall]
DisplayName     = %WinUSB_SvcDesc%
ServiceType     = 1
StartType       = 3
ErrorControl    = 1
ServiceBinary   = %12%\WinUSB.sys

;[4]
[USB_Install.Wdf]
KmdfService=WINUSB, WinUsb_Install

[WinUSB_Install]
KmdfLibraryVersion=1.5

;[5]
[USB_Install.HW]
AddReg=Dev_AddReg

[Dev_AddReg]
HKR,,DeviceInterfaceGUIDs,0x10000,"{15630179-b622-4834-8ff7-9916b1446884}"

;[6]
[USB_Install.CoInstallers]
AddReg=CoInstallers_AddReg
CopyFiles=CoInstallers_CopyFiles

[CoInstallers_AddReg]
HKR,,CoInstallers32,0x00010000,"WdfCoInstaller01005.dll,WdfCoInstaller","WinUSBCoInstaller.dll"

[CoInstallers_CopyFiles]
WinUSBCoInstaller.dll
WdfCoInstaller01005.dll

[DestinationDirs]
CoInstallers_CopyFiles=11

; ================= Source Media Section =====================
;[7]

[SourceDisksNames]
1 = %DISK_NAME%,,,\i386
2 = %DISK_NAME%,,,\amd64

[SourceDisksFiles.x86]
WinUSBCoInstaller.dll=1
WdfCoInstaller01005.dll=1

[SourceDisksFiles.NTamd64]
WinUSBCoInstaller.dll=2
WdfCoInstaller01005.dll=2

; =================== Strings ===================

[Strings]
MFGFILENAME="XYZDevice"
ProviderName="XYZ Inc"
ClassName="XYZ device"
USB\MyDevice.DeviceDesc="XYZ"
WinUSB_SvcDesc="XYZ"
DISK_NAME="Drivers"

我也验证了柜台签名的详细信息。请参考下图。

  • 用于交叉签名的证书的指纹(指纹:2f 25 13 af 39 92 db 0a 3f 79 70 9f f8 14 3b 3f 7b d2 d1 43 DigiCert High Assurance EV根CA的交叉证书)
  • 可以从签名文件的属性中看到的交叉签名证书的指纹是40 01 91 47 5c 98 89 1d eb a1 04 af 47 09 1b 5e b6 d4 cb cb (我不知道它是否正确)

enter image description here

请帮忙。我花了很多时间在这上面并且最终没有结果。对此的任何帮助都会非常明显。

0 个答案:

没有答案