vote up 1 vote down star
1

I'm writing a tool in Perl that needs to scan for certain binary patterns inside an executable file on a Mac OSX. To avoid getting very many false positives, I want to restrict my search to the data/text segment of the executable, excluding the code segment and a few other things. How can I accomplish this?

flag

2 Answers

vote up 6 vote down check

How about using otool?

-t     Display the contents of the (__TEXT,__text) section.  
-d     Display the contents of the (__DATA,__data) section.
link|flag
vote up 0 vote down

You should look at the ELF file format specification. It contains headers and tables that tell you exactly which segments live where. Parsing it is tedious but straightforward.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.