Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Shellcode Loader

Allocate memory for executing shellcode later.

Overview

Alokasi menggunakan posix_memalign. Fungsi posix_memalign bekerja dengan mengalokasikan block memory yang dimulai dari alamat kelipatan page.

#include <stdlib.h>

int posix_memalign(void **memptr, size_t alignment, size_t size);

Reference