I'm trying to get a shellcode using C. I cannot just take .obj file due to the large amount of nulls. I've also tried "Shellcode Compiler", but it hasn't helped me.
Are there any other projects which can help me, or any ways to create a useable shell code from C? My simple C code:
#include <Windows.h>
int main()
{
WinExec("SomeFile", 0);
}