views:

114

answers:

2

I am trying to understand PE file formats and there are many sections. What is the bss section? Is that fluid and data written to that section can be overwritten anytime? Is that a storage location in memory of the loaded binary?

+1  A: 

In assembler, the bss section was used to define memory space that didn't need to be initialized to any particular value. I imagine it hasn't changed.

Mark Ransom
A: 

This link might help explain in more detail: Microsoft Portable Executable and Common Object File Format Specification

gwell