signify
signify copied to clipboard
Module to generate and verify PE signatures
Hey, would it be possible to add the following CA: `DigiCert SHA2 Assured ID Code Signing CA`? The following (valid) sample cannot be verified because of: `VerificationError: Chain verification from...
Validation with Get-AuthenticodeSignature: ```powershell (venv) PS C:\Users\aa\Documents\Projects\PowerShell\PathHashCalc\src\python> Get-AuthenticodeSignature "C:\Program Files\Common Files\microsoft shared\MSInfo\msinfo32.exe" Directory: C:\Program Files\Common Files\microsoft shared\MSInfo SignerCertificate Status StatusMessage Path ----------------- ------ ------------- ---- 58FD671E2D4D200CE92D6E799EC70DF96E6D2664 Valid Signature verified. msinfo32.exe...
Hi Ralf, I'm trying to verify signed windows file and I'm getting certificate error for the file which is regularly signed I use. Here's the example of a verification via...
Windows verifies the attached sample's signature, however when I use `signify`, I get: `SignedPEParseError: The PE file does not contain a certificate table.` Any ideas? (Attaching as link because GitHub...
I have a sample of a Spotify installer which Windows verifies correctly, while Signify returns: `SignerInfoParseError('SignerInfo.version must be 1, not 0',)` Any plans on supporting other `SignerInfo` versions as well?...
I have a McAfee installer sample which Windows verifies correctly, while with Signify I get: `SignedPEParseError('Unknown certificate revision 3d6e',)` Any plans to support other revisions as well? [mcafee_sample.zip](https://github.com/ralphje/signify/files/5360728/mcafee_sample.zip)
When I verify a certificate of PE file. Some thing is wrong. The Error is: `Unexpected content type for SignerInfo, expected 1.2.840.113549.1.9.16.1.4, got Data` The refer code in signerinfo.py:90 :...