Code signing is the process of digitally signing executables and scripts to confirm the software author and guarantee that the code has not been altered or corrupted since it was signed by use of a cryptographic hash. Microsoft Authenticode (TM) is Microsoft's implementation of digitally code ...

learn more… | top users | synonyms

2
votes
1answer
28 views

Managed Windows Service starts up slowly after digital signing

We recently tried out digitally signing our .NET binaries. We have a Windows Service which typically starts up within 10 seconds. However after we started digitally signing it, the time increased to ...
0
votes
1answer
22 views

Is it important to do code signing?

We would like to distribute our new windows software on the internet (exe file). What are the benefits of getting an authenticode code signing certificate? Thanks
0
votes
1answer
131 views

Signed .CAB results in “Unknown publisher” on windows mobile 6.5

I have purchased a certificate from http://www.ksoftware.net/ which I use to sign a .CAB file used for installation of our software on windows mobile 6.5 devices. However, even after signing the .CAB, ...
1
vote
1answer
35 views

How can a “referenced assembly” verify the signature/authenticity of the “caller assembly”?

My question is with regard to enforcing security between .NET assemblies. And here's the scenario: A Foundation assembly is deployed on a server. A series of Plugin assemblies are shipped in an ...
0
votes
1answer
81 views

Code Signing Certificate Expiration Issue

My code signing certificate is valid from 3/3/12 to 3/3/13 (Comodo) Will re-newing it issue me a new certificate (.pfx file) ? or can I use the current certificate (.pfx file) after 3/3/13 after I ...
2
votes
1answer
134 views

Using Authenticode With ClickOnce WPF App

Alright, I'm not doing something right and I need some help. Here's what's happening: I have a "real" authenticode certificate from commodo that I have paid for I'm trying to sign and deploy a WPF ...
0
votes
0answers
102 views

Security of WinVerifyTrust, or verifying trust of a locked file

I have a process that loads an external DLL (sort of a plugin system) where I want to verify that the loaded DLL is signed correctly using Authenticode. After perusing the documentation for ...
0
votes
0answers
70 views

Can a Certum MS code signing certificate be used to sign jars?

I need to order a new code signing certificate. The primary purpose of the certificate is to sign jar files. In the next year we will probably start shipping a Windows driver so I'd like the ...
4
votes
1answer
331 views

Verifying Authenticode signed executables and DLLs using OpenSSL API

I have installed openssl and now the rsa_test.c is running fine. What I want to do is: Open any exe or dll digital certificate. Extract the Thumbprint and PublicKey. The public key contains the ...
3
votes
1answer
166 views

Digital Signature on file gone after download from website

I have developed a software application and digitally signed my installer with an Authenticode certificate obtained from Verisign (now Symantec). I signed the installer (.exe) using the signtool.exe ...
3
votes
1answer
181 views

Is it acceptable practice to install an Authenticode code signing certificate directly on my build server to create a production signed build?

Is it acceptable practice to install an Authenticode code signing certificate directly on a build server to create a production signed build? I’m looking for some resources on the net that suggest or ...
2
votes
2answers
561 views

How to find WiX RemotePayload's CertificatePublicKey hash

I'm trying to resolve WiX RemotePayload hashes, but I'm not sure how the CertificatePublicKey attribute is found. Take, for example, the .NET 4.0 Package definition from WiX 3.6 sources: ...
5
votes
3answers
3k views

Signed INF driver works on the computer where it was signed, not others

My company purchased a Driver Signing Certificate from Go Daddy. I used it to sign a simple INF file that is a driver for some of our USB devices that use Microsoft's usbser.sys. Everything seems to ...
2
votes
2answers
173 views

CryptUIWizDigitalSign failing when pwszTimestampURL specified

I am having issues when calling CryptUIWizDigitalSign to programatically sign an executable with our public code signing certificate, without showing any UI. The certificate is a Comodo code signing ...
1
vote
0answers
394 views

How to extract the Signer Info from the Authenticode of a digitally signed PE File encoded using ASN1?

I need to extract the SignerInfo from the Authenticode of a digitally signed PE File in ASN1 structure. INFO: A PE File contains the authenticode at the offset specified by Security Directory RVA ...
1
vote
0answers
1k views

Code Signing --> Publisher: Unknown - Have correct Chain

Solved! Hope you guys can help! First off. I have gone through every article I could find at SO, as well as MSDN, etc. I am trying to sign an installshield exe. I have a godaddy code signing ...
1
vote
1answer
83 views

Obtaining an authenticode for an Azure application

I am in the process of trying to obtain an authenticode certificate for our online application. I have paid for the cert (through KSoftware a reseller of Comodo). They insist that they require the ...
4
votes
2answers
2k views

How do I read the digital signature information from a signed .Net assembly?

I am writing an assembly information application to be used in our software build process and am trying to read the digital signature information from a signed .Net assembly. I want to do in my C# ...
2
votes
1answer
201 views

Self-extracting self-checking executable

I am distributing an authenticode signed self-extracting executable whose content I control. It contains a mushroom of MSI-based installers that controls a hot swap of a distributed system, so it ...
0
votes
2answers
299 views

I can change signed executable

I've tried to download a signed executable ( http://live.sysinternals.com/procexp.exe ) and modify it. I've thought it can't be done and Windows will somehow prevent me from running it (or warn me at ...
1
vote
2answers
823 views

Code signing certificate for open source projects

I was wondering about getting a code signing certificate for my open source projects. I had a couple questions about them: Being a unregistered company that develops open source projects, is there ...
26
votes
2answers
4k views

Getting around Chrome's Malicious File Warning

I created an application which comprises a number of *.exe files. I've packaged these up into an NSIS installer which I hosted on my website. When I try to download it Chrome reports it as potentially ...
3
votes
1answer
427 views

Unable to sign code with code-signing certificate

We purchased the Microsoft Authenticode certificate from Thawte. Now I have it in a PFX file. I try the following: D:\sign>signtool sign /f ./cert/cert.pfx /p mypass /t ...
0
votes
1answer
70 views

Can I sign an .exe that launches another?

I'm developing an installer (an .exe) that extracts and launches another installer. If I use an Authenticode certificate to sign the first .exe, does the embedded installer need to be signed too? I ...
14
votes
3answers
549 views

Does code-signing without strong-naming leave your app open to abuse?

Trying to get my head around authenticode code-signing and strong-naming. Am I right in thinking that if I code-sign an exe that references a few dlls (not strong named) that a malicious user could ...
1
vote
2answers
244 views

Strong Naming or Authenticode signing a new assembly

I've been asked by an end user to add "Strong Naming" to one of my components, because they want to reference it from a strong named assembly. I already have an authenticode certificate, so I'm ...
3
votes
1answer
243 views

Why are signing keys so expensive?

I was looking into getting an authenticode signing key recently and am shocked by how expensive they are. This got me thinking -- most kinds of signing keys, whether Authenticode, SSL, etc. -- are ...
7
votes
2answers
1k views

Check whether a given executable is digitally signed and valid?

In my C#/.NET application I have to check if a given executable is digitally signed (preferably without Exception testing.) Then I need to check if its certificate is valid (based on installed root ...
1
vote
3answers
736 views

C#: How to detect tampering of authenticode signed file

I'm trying to write a C# program that verifies the digital signature of exe's. The exe's are signed with an authenticode certificate, and I want to detect tampering. I've been able to create a ...
0
votes
1answer
129 views

.Net Code Signing - Can I use an AD Certificate?

I am working on an internal project which uses a bunch of OLEDB Providers some of them has a UI. The biggest challenge is that I need to request uiAccess=true in the manifest which only is possible on ...
3
votes
2answers
284 views

Can a .NET assembly be signed using an X509Certificate?

I believe I have a foundational understanding of the X509Certificate and have created certificates and private keys for my Development environment. Getting more acquainted now with the X509Certificate ...
1
vote
4answers
1k views

SignTool unexepected internal error

I am running SignTool with the following command: signtool sign /f keyfile.pfx /p mypassword pathToMsiFile.msi and i get the following error: SignTool Error: An unexpected internal error has ...
2
votes
1answer
392 views

How can I avoid Authenticode signing third-party libraries in a .NET project in an automated build?

We recently purchased a code-signing certificate and I've been incorporating the code signing step into our automated builds. Our build script has to build both VB6 and .NET projects, so we currently ...
1
vote
2answers
949 views

SignTool error: Access is denied

I am trying to authenticode sign a .NET application with a new code signing certificate on Windows Server 2008 R2 x64 with VS2010 installed, but SignTool keeps responding with Access is denied: ...
2
votes
2answers
442 views

Detect a digital signature without WinVerifyTrust

I have a large number of EXE files and need to figure out which ones have digital signatures. Does anyone know if there is a way to check without access to WinVerifyTrust (they're all on a Unix ...
0
votes
1answer
321 views

How to retrieve and decode a timestamp date property from authenticode signed files in .NET

I recently found here a very informative article about getting various informations from Authenticode signed executables: Get timestamp from Authenticode Signed files in .NET I managed how to ...
1
vote
1answer
356 views

Signing executables for Windows

I develop a desktop application for use on Windows, and was wondering how I can get my executables signed so they stop showing those horrible looking warning messages about being from an unknown ...
2
votes
2answers
674 views

C - Verify code signatures - Windows API

I need to verify code signatures of binaries. Microsoft Authenticode I think is the term. Is there a sane way to do this using the Windows API?
5
votes
2answers
361 views

Should Open-Source Libraries be Digitally Signed

It is a good practice to always sign executable files (exe, dll, ocx, etc.). On the other hand, with an open source project it may considered disregarding the contributions to the project from all ...
2
votes
2answers
567 views

What is the best way to check programatically if DLL/EXE file is signed with authenticode?

I do not want to verify the certificate. I want to use this on a build server to check all files and list the one that we may have forgot to sign.
0
votes
1answer
181 views

How to use digital certificate to check the author of a program?

We develop a Win32 program (=host) which allows 3rd party to write plug-ins. As some plug-ins contains valuable piece of code (for example, high quality video scalar), the 3rd parties want to limit ...
0
votes
0answers
621 views

Certificate Revocation List not found by Windows

I made my own CA for Authenticode to be used by third party developers for an application I'm writing. I want to make sure that I can revoke certificates, and am testing the CRL behavior of my CA and ...
0
votes
1answer
589 views

SignTool Error: File not found - pfx

I am using signtool.exe to sign binaries with the PFX file. But when I try to execute the command through command line, an error message is displayed. SignTool Error: File not found: D:\Myfile.Pfx ...
6
votes
1answer
1k views

Should I sign my DLLs?

I have a C++ Windows app. I sign our installer and my executable, but I don't currently sign my DLLs (such as zlib1.dll). It is not a big deal to sign those as well, but can someone explain what the ...
6
votes
1answer
643 views

Verify Authenticode signature as being from our company for automatic updater

I am implementing an automatic update feature and need some advice on how to do this securely using best practices. I would like to use the downloaded file's Authenticode signature to verify that it ...
6
votes
1answer
818 views

.NET: Strong naming vs. Authenticode

Having read about strong names in .NET here, for example, I have the following question: We have an Authenticode code signing certificate with which we sign all our EXE, DLL and MSI files. The ...
0
votes
1answer
272 views

Clickonce signing does not apply timestamp

I am trying to sign a Clickonce deployment (in Visual Studio 2008) for a Microsoft Outlook 2007 AddIn. On the 'Signing' tab of the project properties I have specified my certificate and a timestamp ...
3
votes
1answer
485 views

Why would a digitally signed executable be treated as unsigned until viewing certificate details

I'm getting a very odd result when running an executable that has been digitally signed. The executable was signed using signtool.exe using a proper level 2 code signing certificate (not ...
0
votes
1answer
185 views

How do I modify the “File Description” of an executable using msbuild (or command line)?

I have a 3rd party app that is generating an executable for me, but it's putting its own name into the "File description" and "product name" details of the executable. When I sign these with ...
1
vote
1answer
131 views

Secure Authenticode key on a build server

I'm trying to figure out how best to set up Authenticode signing at my workplace. The security implications are stressing me out. My initial thought is that the person who controls the key should ...

1 2