This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Author: Omdihar | |
#include "HwidSpoofer.h" | |
#include "SystemRoutines.h" | |
#include <ntddstor.h> | |
#include <Ntdddisk.h> | |
PDRIVER_DISPATCH OldIrpMj; | |
char NumTable[] = "123456789"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <vector> | |
#include <Windows.h> | |
#include <TlHelp32.h> | |
#include <iostream> | |
#include <fstream> | |
std::string file_path = ""; | |
std::string file_endpath = ""; | |
std::string namespace_name = "example_namespace"; | |
std::string namespace_resource_name = "resources"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// OverwolfEmulator.cpp : définit le point d'entrée pour l'application console. | |
// | |
#include "stdafx.h" | |
#include <Windows.h> | |
#include <stdint.h> | |
#define OVERLAY_MAGIC_NUMBER 0x00000005 | |
struct OverlayMsgHeader { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <string> | |
#include <vector> | |
#include <fstream> | |
#include <iostream> | |
#include <filesystem> | |
#include <Windows.h> | |
#include <winternl.h> | |
static_assert( sizeof( void* ) == 8 ); |