Hey guys, first post! Figured I should get more involved in the community as from my experience literally every online tutorial in malware development sucks ass except for
ired.team.
IDK if there is some better way to do this, but the method I use, is abusing preprocessor macros in my C/C++ code to generate a new signature every time I compile!
Teh gist of it is (at least in MSVC), you can use the macros
__DATE__ and
__TIME__ to generate new sigs.
For example:
Code:
printf("%s %s\n", __DATE__, __TIME__);
will bypass signature detection!
NOTE: THIS WON'T WORK AGAINST RUNTIME AND DYNAMIC ANALYSIS, SEE MY NEXT POST TO SEE HOW TO EVADE THOSE