Tagged Questions
0
votes
1answer
126 views
Get programs flags with a C program
I'm actually trying to get the flags of given by the objdump -s command through a C program. But I don't know where to look for them. For example here:
./my_objdump: file format elf64-x86-64
...
2
votes
1answer
134 views
Get elf sections offsets
I'm trying to get the offset and the data of each sections of an elf file.
I already have the sections names with this code:
#include <elf.h>
#include <fcntl.h>
#include <stdio.h>
...
3
votes
2answers
562 views
How to display the symbol's type like the nm command?
I'm studying the ELF format right now. I have to code a simple nm fonction (without the options).
I'm already printing on the output the symbol's value and the symbol's name.
Here's the nm output :
...
11
votes
1answer
222 views
Function pointer equality in C
My questions:
Is function pointer equality guaranteed by the C standard?
If the answer of (1) is yes. Is that the case regardless of the pointer being obtained in different final compilation units ...
0
votes
2answers
135 views
system wide elf compression script using find, file, and upx
I'm working on my first script, and it is to compress all elf executables on a system.
find / * -executable -type f -exec file '{}' \; | grep ELF | sed -e "s/[:].*//" |
upx --best ...
0
votes
1answer
251 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 ...
3
votes
1answer
622 views
getting the sh_name member in a section header elf file
I'm trying to get the correct offset to the section name by accessing the sh_name member of an elf file, but it keep giving me zero, or null...
I'm supposed to only use mmap() and the elf.h - no ...
0
votes
1answer
221 views
getting to an ELF file information
ok...
so im suppose to write a program that prints all of the sections name in an elf file using only mmap (thats not important...)
so what i did so far is this -
maped the file into the stat ...
1
vote
1answer
621 views
Is there a way to detect an ELF binary is broken/tampered or not?
How do I programatically detect whether an ELF binary is tampered or broken?
For example, If I delete second half of an ELF binary (or a library shared object) and paste random text, this will ...
2
votes
2answers
857 views
Can I add a library refence to existing Shared Object?
I have a system "fsimage.so" that requires mkdirp, which just happens to live in libgen.so. But fsimage.so does not know this. For example:
# ldd /usr/lib/python2.4/vendor-packages/fsimage.so
...
4
votes
1answer
353 views
Can ELF file contain more than one symbol table?
Can ELF file contain more than one symbol table?
Is it standardized somehow?
2
votes
3answers
1k views
a.out replaced by ELF file format?
I have a few questions:
Why was a.out replaced by ELF?
What were the major flaws in the a.out format that led to the raise of ELF file format?
Earlier core dumps were based on a.out, but now they ...
4
votes
3answers
3k views
COFF on Linux or ELF on Windows
Is it possible to run the COFF executable files on UNIX or the ELF executable files on Windows? And what would be the steps to be able to run either file type on Windows and UNIX. I'm just curious.