- 人气:
- 放大
- 缩小
- 二维码
- 赞赏
delphi XE可执行文件上启用DEP和ASLR
Enable DEP and ASLR flags on a Delphi XE+ executable:
unit Unit1;
//{$SetPEOptFlags $100} //to set the ASLR flag
//{$SetPEOptFlags $40} //to set the DEP flag
{$SetPEOptFlags $140} //to set both DEP + ASLR in one line
Statically analyze Windows exe files (online) to look for use of DEP and ASLR:
SlopFinder (Online Tool)