PyDA icon indicating copy to clipboard operation
PyDA copied to clipboard

Represent Data Sections as Code

Open direwolf314 opened this issue 11 years ago • 2 comments

All data sections should be represented as code in a manner similar to that used by IDA. As an initial step, single-byte declarations are good enough. For example, for the byte 0x1a, a line would simply declare: db 1ah . See other taskings for examples of data section postprocessing (identifying strings, etc.)

direwolf314 avatar May 05 '14 13:05 direwolf314

Boom. Done. Single bytes and Strings are identified too.

direwolf314 avatar May 06 '14 18:05 direwolf314

We also need to be able to redefine sections of data as: db - 1 byte dd - 2 bytes dw - 4 bytes dq - 8 bytes s - force a string c - force disassembly ...and maybe more.

wiseone13 avatar May 22 '14 22:05 wiseone13