After disassembling PE 32 files using radare2 to extract opcodes from, I noticed that near the beginning of the opcodes I get a long consecutive list of "add" opcodes. I am wondering if anyone knows the reason for that and why it is there.
Asked
Active
Viewed 37 times
1
-
Look at the encoding. It's probably just a bunch of zeroes. – Raymond Chen Jun 18 '20 at 02:32
-
Ah thank you very much. – Allen Ye Jun 18 '20 at 06:57
-
Does this answer your question? [What would happen if a system executes a part of the file that is zero-padded?](https://stackoverflow.com/questions/50150909/what-would-happen-if-a-system-executes-a-part-of-the-file-that-is-zero-padded) – Raymond Chen Jan 31 '21 at 18:47