mirror of
https://github.com/tlsbollei/KittyLoader
synced 2026-06-21 14:11:21 +00:00
Add files via upload
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
#pragma once
|
||||
#include <windows.h>
|
||||
|
||||
typedef long (__stdcall* _allocmem)(
|
||||
void* process,
|
||||
void** addr,
|
||||
unsigned long long* size,
|
||||
unsigned long alloctype,
|
||||
unsigned long protect,
|
||||
void* extra,
|
||||
unsigned long extracount);
|
||||
|
||||
typedef long (__stdcall* _protectmem)(
|
||||
void* process,
|
||||
void** addr,
|
||||
unsigned long long* size,
|
||||
unsigned long newprotect,
|
||||
unsigned long* oldprotect);
|
||||
|
||||
typedef long (__stdcall* _callfunc)(
|
||||
void* func,
|
||||
unsigned long flags,
|
||||
void** result);
|
||||
|
||||
void* findmem(size_t size);
|
||||
void* gettargetmod();
|
||||
void runpayload();
|
||||
|
||||
extern unsigned char shellbytes[];
|
||||
extern size_t shellsize;
|
||||
Reference in New Issue
Block a user