2

executable files on windows have a .reloc section which stores information to rebase the image. But EXE built by lazarus doesn't have that. How I enable dynamic base on a lazarus project if I really need ASLR?

Kelvin Zhang
  • 942
  • 1
  • 7
  • 24

1 Answers1

1

Use Editbin tool with /DYNAMICBASE or /HIGHENTROPYVA parameter to edit your executable .

Mojtaba Tajik
  • 1,725
  • 16
  • 34