hacksysteam / HackSysExtremeVulnerableDriver

HackSys Extreme Vulnerable Driver (HEVD) - Windows & Linux
https://hacksys.io
GNU General Public License v3.0
2.42k stars 525 forks source link

Fix handler to increment by 1 instead of 8 #49

Closed yardenshafir closed 2 years ago

yardenshafir commented 2 years ago

(*(PULONG_PTR*)UserPointerToIncrementValue)++; increments by one pointer (so 8) instead of 1. To make this a 1-byte arbitrary increment, making UserPointerToIncrementValue a PCHAR, and incrementing by 1 CHAR.

hacksysteam commented 2 years ago

Hi @yardenshafir thanks for bug report and pull request