mirror of
https://github.com/Friends-Security/RedirectThread
synced 2026-06-06 15:44:29 +00:00
12 lines
401 B
C++
12 lines
401 B
C++
#pragma once
|
|
#include <Windows.h>
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include <fstream>
|
|
|
|
#include "Arguments.h"
|
|
|
|
bool ValidateTargetProcess(DWORD pid, bool verbose);
|
|
bool ValidateTargetThread(DWORD tid, bool verbose);
|
|
bool LoadShellcode(const std::string &filepath, std::vector<unsigned char> &bytes);
|
|
bool LoadShellcodeEx(const InjectionConfig &config, std::vector<unsigned char> &shellcodeBytes); |