Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/i32-sudo/64kerneldrivercleaner

A Kernel Driver that can be used for a cheat or malware base to circumvent common cache & structure table checks. PsLoadedModuleList however requires a PG Bypass on (Some) Machines > 22H2 Win10, Not Win 11
https://github.com/i32-sudo/64kerneldrivercleaner

anticheat battleye be bucket bypass cheat clearing eac fn fortnite hash kernel mml mmu piddb undetected

Last synced: about 2 hours ago
JSON representation

A Kernel Driver that can be used for a cheat or malware base to circumvent common cache & structure table checks. PsLoadedModuleList however requires a PG Bypass on (Some) Machines > 22H2 Win10, Not Win 11

Awesome Lists containing this project

README

        

# 64KernelDriverCleaner
A Kernel Driver that can be used for a cheat or malware base to circumvent common cache & structure table checks. PsLoadedModuleList however requires a PG Bypass on (Some) Machines > 22H2 Win10, Not Win 11
```cpp
void CleanDriverSys(UNICODE_STRING driver_int, ULONG timeDateStamp) {
if (clear::clearCache(driver_int, timeDateStamp) == 0) {
log(_("PiDDB Cache Found and Cleared!"));
}
else {
log(_("PiDDB Non-Zero"));
}
if (clear::clearHashBucket(driver_int) == 0) {
log(_("HashBucket Found and Cleared!"));
}
else {
log(_("HashBucket Non-Zero"));
}
if (clear::CleanMmu(driver_int) == 0) {
log(_("MMU/MML Found and Cleaned!"));
}
else {
log(_("MMU/MML Non-Zero"));
}
}
```