From the above graphs I know there are 9
sections,but why in the 1st graph it shows 0900
?
How to read numbers in PE format?
From the above graphs I know there are 9
sections,but why in the 1st graph it shows 0900
?
How to read numbers in PE format?
The number is little endian, so the least significant byte comes first. Reverse the bytes to get the value in the order usually used by people, i.e. 0x0009.