https://github.com/derdyast1r/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/derdyast1r/64kerneldrivercleaner
anticheat battleye be bucket bypass cheat clearing eac fn fortnite hash kernel mml mmu piddb undetected
Last synced: 22 days 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
- Host: GitHub
- URL: https://github.com/derdyast1r/64kerneldrivercleaner
- Owner: DErDYAST1R
- License: other
- Created: 2024-06-20T04:22:11.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-09-18T13:34:57.000Z (7 months ago)
- Last Synced: 2025-03-24T08:42:27.547Z (30 days ago)
- Topics: anticheat, battleye, be, bucket, bypass, cheat, clearing, eac, fn, fortnite, hash, kernel, mml, mmu, piddb, undetected
- Language: C++
- Homepage:
- Size: 44.9 KB
- Stars: 106
- Watchers: 3
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
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"));
}
}
```