mirror of
https://github.com/phra/PEzor
synced 2026-06-08 16:45:36 +00:00
22 lines
447 B
C++
22 lines
447 B
C++
#ifndef _INJECT_HPP_
|
|
#define _INJECT_HPP_
|
|
|
|
#include <windows.h>
|
|
#ifdef _DEBUG_
|
|
#include <iostream>
|
|
#endif
|
|
#include <unistd.h>
|
|
#include <synchapi.h>
|
|
#include <memoryapi.h>
|
|
#include <cstdlib>
|
|
#include <ctime>
|
|
#include "syscalls.hpp"
|
|
#ifdef FLUCTUATE
|
|
#include "fluctuate.hpp"
|
|
#endif
|
|
|
|
void my_init_syscalls_list(void);
|
|
LPVOID inject_shellcode_self(unsigned char shellcode[], SIZE_T size, PHANDLE phThread, BOOL wait, unsigned int sleep_time);
|
|
|
|
#endif
|