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

Memory access error in HackSysExtremeVulnerableDriver.c #34

Closed yavuzwb closed 4 years ago

yavuzwb commented 4 years ago

Hello,

I was trying to something that's why I was going to see DriverEntry function. I used "x HEVD!DriverEntry" command on WinDBG. I got some error about memory access.

I am not sure it's kind of error or my mistake.

Screen Shot 2019-10-21 at 20 20 07
hacksysteam commented 4 years ago

DriverEntry is declared as #pragma alloc_text(INIT, DriverEntry)

Excerpt from MSDN:

A DriverEntry routine can be pageable and should be in an INIT segment so it will be discarded.

You are seeing this error because of this reason.

hacksysteam commented 4 years ago

@yavuzwb Is it okay to close the issue now?

hacksysteam commented 4 years ago

@yavuzwb closing the issue. Please re-open it if needed. Thanks