Drop files here



Statically analyzes executable files to look for use of best practices.
Read Introducing Serene first.



Explanation

  • NX/DEP - Denies code from executing on the stack.
  • PIE/ASLR - Randomizes the address space.
  • CFG - Control Flow Guard ensures only valid execution paths are followed.
  • x64 - Compiled as a 64-bit binary, as opposed to 32-bit, which allows it to take maximum advantage of PI.