2024-08-02 13:27:27 -07:00
2024-08-02 13:27:27 -07:00
2024-08-02 13:27:27 -07:00
2024-08-02 13:27:27 -07:00
2024-08-02 13:27:27 -07:00
2024-08-02 13:32:14 -07:00
2024-08-02 13:27:27 -07:00
2024-08-02 13:26:40 -07:00
2024-08-02 13:27:27 -07:00
2024-08-02 13:29:39 -07:00

PdFwKrnlMapper

An Unsigned Driver Mapper for Windows 10 22H2 -> Windows 11 23H2 that uses PdFwKrnl to exploit the Read/Write IOCTL Calls to disable DSE & PG to map the unsigned driver.

Main Entry

#include <iostream>
#include <windows.h>
#include "Bypass.h"

int main() {
	std::cout << " Initializing Offsets...\n";
	Bypass::Init(); // Initialize Offsets & Cache Them
	std::cout << " Initializing Exploit and Loading Cheat Driver using PdFwKrnl...\n";
	Bypass::BypassStatus Status = Bypass::LoadCheatDriver("C:\\Driver.sys", "Driver Service Name", "C:\\Windows\\System32\\PdFwKrnl.sys", "Vuln Service Name"); // Load Cheat Driver & PdFwKrnl
	std::cout << " Status: " << Bypass::BypassStatusToString(Status) << std::endl;
	Sleep(5000);
	driver::unload("Driver Service Name"); // Unload Cheat Driver
	return 0;
}

Contact

If you want an actually good Kernel Level Cheat that is UD My discord is -> _ambitza

Description
An Unsigned Driver Mapper for Windows 10 22H2 -> Windows 11 23H2 that uses PdFwKrnl to exploit the Read/Write IOCTL Calls to disable DSE & PG to map the unsigned driver.
Readme MIT 3.8 MiB
Languages
C++ 100%