mirror of
https://github.com/mattifestation/PIC_Bindshell
synced 2026-06-08 15:47:19 +00:00
8e8dbc0406
Apparently, Google doesn't want me to host malicious code on Google Drive. PIC_Bindshell will live in GitHub now.
10 lines
208 B
C
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 |