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 mmap.

#include <sys/mman.h>

void *mmap(void addr, size_t length, int prot, int flags, int fd, off_t offset);

int munmap(void addr, size_t length);

Reference