I have extracted the .rdata section from a windows executable. I would like to parse the variables contained in the section into a easily understandable format, such as:
char s[] = "hello world"
int i = 0
There does not appear, however, to be data types associated with the variables, so simply encoding the variable data in hexadecimal might be more realistic.
Is the data stored in the .rdata section in an easily parsable format? If so, what would that be?
.rdata
section with cross-references to disassembled code. – Jason Geffner Dec 10 '14 at 17:15