Search code examples
portable-executable

About the code section of PE format


  1. Is it true that entry-point always belongs to code section?
  2. Is the code section consecutive or divided into several blocks?

Solution

    1. Yes the entry-point always belongs to the code section.
    2. Code section CAN be divided into several blocks.

    Take a look at this article for more information.