Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Shellcode Loader

Executing shellcode as a thread.

Overview

Eksekusi shellcode dengan pthread_create and tunggu hingga eksekusi tuntas dengan pthread_join.

#include <pthread.h>

typedef void* (*entrypoint_t)(void*);

int pthread_create(pthread_t * thread, const pthread_attr_t * attr, entrypoint_t start_routine, void * arg);

int pthread_join(pthread_t thread, void ** retval);

Reference