You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @soermejo, the pei tool inject raw binary code on the entry point of the PE executable. It's means you need to write the payload by hand in Assembly.
Just a PoC to you see it's running:
// poc.c#include<stdio.h>intmain(void)
{
register long intxasm("r15");
printf("R15: %ld\n", x);
}
What type of payload can you add there?
The text was updated successfully, but these errors were encountered: