Leak Society - The Home Of Nulled Resources.
Forum Beta v1 Now Live!
EZ method to bypass signature detection (if using default meterpreter payloads)
Thead Owner : Hypervisor, Category : General Hacking, 0 Comment, 558 Read
Viewers: 1 Guest(s)
Junior Member
**
11
Messages
2
Threads
0
Rep
4 Years of Service
08-25-2020, 10:35 AM
#1
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


Forum Jump: