0
votes
1answer
21 views

How to extend a ELF binary

I am writing a small instrumentation tool. I must insert the instrumentation routine within the binary file. A good approach should be to insert those routines in a separate code segment and a ...
0
votes
1answer
26 views

How to strip every extra information from an executable?

When creating the final binary, executable or library, too many informations are being added to it. I would like to strip everything that is not strictly essential and vital for the binary itself; ...
0
votes
1answer
228 views

Change in Binary without change in Source Code

I have the following requirement: To Find if my binary has changed or not. My source code is unchanged. When I recompile the binary (without change in Source Code), I notice that the Binary is ...
0
votes
1answer
546 views

Dump entire ELF binary into readable headers and sections

Is it possible to dump an entire binary structure of an ELF-ARM file into a readable format.The idea is to analyze each section and save it back to a binary. Thanks, SrK
1
vote
0answers
118 views

ELF Parsing : Accessing a DIE Directly using pyelftools

I need a method for accessing DIE's directly using their offset. So far, I have found that there is a method for the Computation Unit (CU) object in which you can access a DIE from its offset. ...
0
votes
1answer
651 views

How to get binary file using eclipse c++?

I need to get .hex file from eclipse c++ compiler. I received only .elf file. Eventually, I should write that binary code into controller which can adopt only binary code. I converted the .elf file ...
1
vote
1answer
175 views

How to create an object file with a big binary char[] array on Linux?

I need tool which is equivalent to: $ echo 'char bar[] = {65, 66, 67};' >foo.c $ gcc -c foo.c I have a multi-megabyte binary file to be put to the bar array, and I need it without creating an .c ...
2
votes
2answers
833 views

Any libraries of reading & writing binary file formats (PE & ELF)?

HellO, I want to write a binary file format viewer for windows which can operate on both PE & ELF files. Similar to the ones already there: PE Explorer http://www.pe-explorer.com/ PE VIew: ...
1
vote
0answers
559 views

Building elf within Eclipse within Windows

I'm having trouble building an Elf file within Eclipse within Windows. It seems that everytime I build, a PE / portable executable for windows is created. I've gone into the Binary Parser section and ...
4
votes
1answer
850 views

Packing a file into an ELF executable

I'm currently looking for a way to add data to an already compiled ELF executable, i.e. embedding a file into the executable without recompiling it. I could easily do that by using cat myexe mydata ...
1
vote
1answer
1k views

How to convert PE(Portable Executable) format to ELF in linux

What's the best tool for converting PE binaries to ELF binaries? Following is a brief motivation for this question: Suppose I have a simple C program. I compiled it using gcc for linux(this gives ...
4
votes
3answers
1k views

Has anyone been able to create a hybrid of PE COFF and ELF?

I mean could a single binary file run in both Win32 and Linux i386 ?
2
votes
2answers
1k views

Add source code to elf file

I want to add my C++ source code to the corresponding elf binary file and I'm looking for the best way to do this. (I'm using several versions of my code and not every version should be committed into ...
3
votes
2answers
166 views

Is there a standard encoding for NEEDED entries in ELF?

I'm trying to make some of my code a bit more friendly to non-pure-ascii systems and was wondering if there was a particular character encoding used for NEEDED entries in ELF binaries, or is it rather ...