Tagged Questions
4
votes
1answer
109 views
iPhone Mach-O binaries, string storage, __TEXT/__DATA
I am attempting to read constant (or initilization) strings from an iPhone Mach-O binary file. I understand that the 3 relevant segment.sections are _TEXT._cstring _TEXT._ustring and _DATA._cfstring. ...
2
votes
1answer
287 views
reconstructing symbols stripped from Mach-O binary
Using Mac OS X 10.5 I'm trying to figure out how to use dtrace to track the execution of a Mach-O binary. However, it seems the symbols have all be stripped out so any attempts to put use probes ...
0
votes
1answer
60 views
What is the point of padding?
In particular, I'm reading into the Mach-O binary file format for Intel 32 on OS X. After the FAT header there is a whole bunch of padding before the offset of the first archive. What is the point of ...
0
votes
1answer
191 views
OS X: Do sections in the __TEXT segment get modified by other programs?
Does it happen that some program (or even the OS itself) changes the contents of an executable's __TEXT segment, for whatever reason?
Note: Here, I'm referring to the "__TEXT" segment, not the ...