Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
136 views

Background I am in the process of migrating our CI Code Signing from a Windows Cert Store based Cert/Private Key to an Token based solution (since Tokens or Cloud are 2025 the only solutions offered - ...
Martin Ba's user avatar
  • 39.4k
3 votes
1 answer
236 views

I have a simple program: int main(){ int t = 12 + 34; return t; } The executable of this program is signed and the sign data altered with this disitool utility as described in in this thread: ...
qloq's user avatar
  • 1,335
0 votes
1 answer
881 views

I want to use a PowerShell one-liner to extract the signing certificate issuer and subject's common names, but I am not able to get it working. Currently, I have: Get-AuthenticodeSignature .\test.exe |...
fhcat's user avatar
  • 1,313
0 votes
0 answers
104 views

I have looked at electrons docs on how to sign my NodeJS ElectronJS code specifically for windows as im not working on apps for mac at the moment. However the options for obtaining a certificate are ...
Braydan's user avatar
  • 25
1 vote
1 answer
223 views

We've been submitting drivers to Partner Center for validation and signature by Microsoft for a long time. Recently our Authenticode certificate expired, so we purchased a new one. When we submit ...
Helge Klein's user avatar
  • 9,124
3 votes
0 answers
2k views

TL;DR Question Does the expiry of the Timestamp Certificate have any bearing on the validity of the signed file (under normal Windows operation)? Preamble The basics of Code Signing and Timestamping ...
Martin Ba's user avatar
  • 39.4k
1 vote
1 answer
727 views

I need a non-windows (linux or FreeBSD) way of signing a boot executable(EFI binaries) in the Authenticode PE format. Currently there are some tools like pbsign, sbsign, uefisign, osslsigncode on *nix ...
rapidclock's user avatar
  • 1,717
0 votes
2 answers
3k views

I am following the instructions to sign a script and I've got to the part where I sign the add-signature.ps1 file so that I can sign my script using it $cert = @(Get-ChildItem cert:\CurrentUser\My -...
MarcusR1's user avatar
1 vote
0 answers
252 views

I understand that the Microsoft signtool utility and Powershell Set-AuthenticodeSignature cmdlet generate a hash of the data to be signed and use that to compute the signature. I need to get the hash ...
fhcat's user avatar
  • 1,313
1 vote
3 answers
733 views

One of my toy projects require IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY in PE header to run. I've been testing it with test signing on, but I'm considering buying a cert if I can afford. The documents ...
SixZiv's user avatar
  • 21
6 votes
1 answer
1k views

On Windows, there is Authenticode to sign .NET Core / .NET 5 assemblies (please note that I am not referring to Strong Name Signing which is different). This prevents tampering and guarantees ...
A X's user avatar
  • 1,086
3 votes
1 answer
522 views

Owin.dll, the assembly inside the Owin package on Nuget.org, does not have an Authenticode signature. However, on Windows Server 2016 and Windows Server 2019, Get-AuthenticodeSignature (and sigcheck....
themilkyninja's user avatar
0 votes
0 answers
174 views

Is it possible to code-sign and validate a directory on Windows? Basically, something like MacOS bundle directory codesigning and validation?
Andriy Gerasika's user avatar
3 votes
0 answers
612 views

We recently renewed our code signing certificate which I also use for signing PowerShell modules. The original certificate was from VeriSign which was acquired by DigiCert and they are now the CA. ...
Mickey Cohen's user avatar
  • 1,307
0 votes
1 answer
643 views

I'm implementing the program related to logon domain with certificate by custom KSP and my credential provider. I have successfully interacted from my credential provider to custom KSP. I'm in the ...
sliva's user avatar
  • 11
4 votes
1 answer
2k views

I'm writing a custom CNG provider (Key Storage Provider) to allow signing using our private HSM API in Signtool.exe I implemented the APIs in my CNG provider and successfully installed in my Windows ...
GAR's user avatar
  • 111
3 votes
2 answers
5k views

Signing Windows binaries on Server Core Windows Server 2019 Datacenter Edition with Visual Studio 2019 Community. signtool.exe was not behaving correctly (issues opening PFX file), and so we were ...
yano's user avatar
  • 4,523
2 votes
2 answers
6k views

Being stuck with signing (Authenticode) using PKCS#11 tokens, and given the amazingly poor driver support from the vendor (SafeNet), we're signing Windows code on Linux. All of this is working fine ...
MushyMiddle's user avatar
3 votes
1 answer
1k views

I have a number of PowerShell files code signed during build. I'm getting different signature status depending how I call Get-AuthenticodeSignature: PS> Get-ChildItem | ForEach { Get-...
abatishchev's user avatar
1 vote
0 answers
111 views

I want to sign a Windows Electron app. Do I only need to sign the installer that will be downloaded by the user or do I also need to sign the .exe (or .dll files) before they will be packaged by the ...
DaveJ's user avatar
  • 2,437
1 vote
0 answers
854 views

I was looking for any documentation of SignerSignEx3. There are examples of how to use SignerSignEx2, however SignerSignEx3 has almost no documentation,. SignTool uses it and in order to code sign ...
Michael Haephrati's user avatar
4 votes
1 answer
8k views

I am trying to find out if there is a possibility to sign executables produced by the Go compiler. I cannot see this in the build/compile options. Is this even possible?
MFT's user avatar
  • 1,494
7 votes
2 answers
3k views

I've been struggling for awhile to amend this code sample from Microsoft that shows (somewhat outdated) way how to retrieve a code signature information from an executable file. It works but it doesn'...
MikeF's user avatar
  • 1,093
1 vote
3 answers
244 views

I'm looking at this piece of C code from Microsoft wincrypt.h header file //+------------------------------------------------------------------------- // Attributes // // Where the Value's ...
vitr's user avatar
  • 7,194
0 votes
1 answer
2k views

I have a dll that is digitally signed, when my application start I want check that this dll is "original", in particular isn't replaced with a fake one. How can I do this checking the Authenticode ...
PRENDETEVELO NEL CULO's user avatar