how to check whether a certain dll uses ASLR or not ?
lets take for example kernel32.dll, does it use ASLR or not ? and how to check other dlls ...
thanks ..
|
how to check whether a certain dll uses ASLR or not ? lets take for example kernel32.dll, does it use ASLR or not ? and how to check other dlls ... thanks .. |
|||
|
|
|
Use dumpbin.exe /headers on the DLL. The DLL characteristics will show "Dynamic base" if ASLR is enabled:
|
|||
|
|
|
You could also use PeStudio. It shows the mitigation indicators of any DLL (kernel32.dll in your question).
|
|||
|
|