Skip to content

Instantly share code, notes, and snippets.

// Author: Omdihar
#include "HwidSpoofer.h"
#include "SystemRoutines.h"
#include <ntddstor.h>
#include <Ntdddisk.h>
PDRIVER_DISPATCH OldIrpMj;
char NumTable[] = "123456789";
@morelli690
morelli690 / _tools_file parser.cpp
Last active October 23, 2019 19:57 — forked from lennyRBLX/file parser.cpp
Converts any file's byte's into a Resource Header file. File -> Resource
#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";
@morelli690
morelli690 / MumGay.c
Created September 18, 2019 00:06 — forked from waryas/MumGay.c
Use mumble_ol.dll to render on any 3D application.
// 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 {
@morelli690
morelli690 / _bypass_drvscan.cpp
Last active August 2, 2019 15:13 — forked from adrianyy/drvscan.cpp
vulnerable driver scanner
#include <string>
#include <vector>
#include <fstream>
#include <iostream>
#include <filesystem>
#include <Windows.h>
#include <winternl.h>
static_assert( sizeof( void* ) == 8 );