Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 932 Bytes

File metadata and controls

21 lines (13 loc) · 932 Bytes

Shellcode Loader

Abusing exception to run the shellcode.

Overview

Eksekusi shellcode melalui exception yang telah didaftarkan melalui AddVectoredExceptionhandler dan dipicu dengan RaiseException.

PVOID AddVectoredExceptionHandler (ULONG First, PVECTORED_EXCEPTION_HANDLER Handler);

void RaiseException (DWORD dwExceptionCode, DWORD dwExceptionFlags, DWORD nNumberOfArguments, const ULONG_PTR *lpArguments);

ULONG RemoveVectoredExceptionHandler (PVOID Handle);

Reference