A forum for reverse engineering, OS internals and malware analysis 

Ask your beginner questions here.
 #29114  by qpok
 Sat Aug 27, 2016 7:25 am
Hello,

Would it be possible to have a thread for code golfing to trigger the largest amount of FPs from AVs with the least amount of instructions possible?
 #29117  by qpok
 Sat Aug 27, 2016 10:31 am
TETYYSs wrote:browse some yara rules and throw a dozen of them to one binary
Well, one could consider that cheating (just take EICAR and declare yourself the winner), but there's still the golfing aspect: have the least amount of instructions or smallest binary to trigger FP.
 #29122  by qpok
 Sun Aug 28, 2016 10:49 am
Well, I just briefly tried throwing in an inline NOP asm to a cpp console app, and it triggered 3 behavioural detections, https://virustotal.com/fi/file/6f244cf2 ... 472377017/. Given there are some UWP imports... I've never taken a look at the compiler machinery that makes the c(pp) / asm work. But if an inline asm block triggers a detection, then maybe I should.
Code: Select all
int main()
{	
	_asm {
		nop
	}
    return 0;
}