[Solved] Virus signature extraction form malware [closed]

Retrieving a “signature” could be as simple as generating a digital signature via hashing for the virus(es) respective binaries. MD5 or SHA. I.E. implementing the following functionality in your code that I’m sure you’ve already started…: md5sum virus -> md5hashofvirus | md5sum virus2 -> md5hashofvirus2 Complete dossier of md5sum available here. MD5 implementation in C … Read more

[Solved] Why doesn’t my Windows API callback function run? [closed]

The documentation for SendMessageCallback tells you, why your callback will not ever be called: If the target window belongs to a different thread from the caller, then the callback function is called only when the thread that called SendMessageCallback also calls GetMessage, PeekMessage, or WaitMessage. The target window obviously belongs to a different thread, because … Read more