Tagged Questions
The winverifytrust tag has no wiki summary.
5
votes
1answer
757 views
How to verify that my orgainization signed a trusted windows binary?
This is a followup question to question 1072540, 'WinVerifyTrust to check for a specific signature?'.
I want to write a C++ function Lets call it 'TrustedByUs' of the form:
bool ...
3
votes
2answers
324 views
Memory Leak while verifying Authenticode Signature of Executables?
I am using WinVerifyTrust to verify the validity of some Windows executables with the following function, called in a loop from _tmain:
int signature_is_valid(const wchar_t *filepath) {
GUID guid ...
2
votes
1answer
1k views
How can I check the digital signature of an .exe or .dll in Perl?
I'm trying to find a way to script (preferably in Perl) - a check to see if an .exe or .dll is digitally signed - if anyone has an easy direction to point me, I'd appreciate it.
1
vote
2answers
172 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 ...
1
vote
1answer
163 views
WinVerifyTrust fails rarely
I use winverifytrust to validate signature.
I am verifying using WINTRUST_ACTION_GENERIC_VERIFY_V2. But rarely it has returned "NO SIGNATURE FOUND". I am unable to simulate the issue.
I am getting ...
0
votes
4answers
3k views
WinVerifyTrust to check for a specific signature?
I'm implementing a process elevation helper for Windows. It's a program that will run in elevated mode and launch other programs with administrator privileges without displaying additional UAC ...