Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
345 views

Buffer Overflow Attack

I'm trying to execute a very simple buffer overflow attack. I'm pretty much a newbie to this. So, if this question is stupid, please excuse me :-) The code: #include<stdio.h> ...
9
votes
4answers
794 views

Disassembling, modifying and then reassembling a Linux executable

Is there anyway this can be done? I've used objdump but that doesn't produce assembly output that will be accepted by any assembler that I know of. I'd like to be able to change instructions within an ...
8
votes
4answers
2k views

How can I tell, with something like objdump, if an object file has been built with -fPIC?

How can I tell, with something like objdump, if an object file has been built with -fPIC?
7
votes
1answer
1k views

What is register %eiz?

In the following assembly code that I dumped out using objdump: lea 0x0(%esi,%eiz,1),%esi What is register %eiz? What does the preceding code mean?
5
votes
2answers
135 views

Why does gcc output machine code have nop instructions

Everytime I do an objdump -d I always see the asm code with batches of nop instructions (instructions that do nothing) For example take this same program: #include <stdio.h> int main() { ...
5
votes
1answer
352 views

Determining register values when using objdump

So I'm trying to use the objdump utility to build a Control Flow Graph from assembly, and I'm running into a problem. Basically, whenever a branch occurs and the target address is relative I'm not ...
4
votes
4answers
2k views

Finding locations in machine code (gcc/objdump -d)

If you have a particular line of C code in mind to examine in the machine output, how would you locate it in objdump output. Here is an example if (cond) foo; bar(); and I want to see if bar ...
3
votes
2answers
811 views

objdump ELF and Windows

I am fairly new to this subject, that is ELF and any Linux related stuff. I am trying to write an ELF file and would prefer to do it on WinXP. My question is, can this be done with MS Visual Studio ...
3
votes
1answer
1k views

How can I examine contents of a data section of an ELF file on Linux?

I've been using objdump to look at assembly code in Linux ELF binaries. Sometimes there is an indirect jump through a jump table that is stored in the rodata (read-only data) section. I have tried ...
2
votes
1answer
25 views

readelf vs. objdump: why are both needed

I need to learn about the ELF file layout for a project I am working on and I noticed the existence of these tools. Why do all Linux distributions include both readelf and objdump? Do these tools ...
2
votes
2answers
52 views

Linux Mach-O Disassembler

Are there any Linux programs that can disassemble an OSX universal x86/x86_64 fat Mach-O binary like objdump? GNU binutils' objdump supports ELF and Windows PE files but not Mach-O.
2
votes
3answers
281 views

GCC/objdump: Generating compilable/buildable assembly (interspersed with C/C++) source?

This is close to c - Using GCC to produce readable assembly? - Stack Overflow - but my context here is avr-gcc (and correspondingly, avr-objdump) for Atmel (though, I guess it would apply across the ...
2
votes
1answer
118 views

objdump output - what do the columns represent?

I ran objdump -r on an object file and got the following output. What do each of the columns represent here? I might have missed it, but the documentation doesn't specify. simple.o: file format ...
2
votes
2answers
185 views

Can I give objdump an address and have it disassemble the containing function?

I'm finding it really annoying to have to disassemble large swathes of library code just to get enough context to see what is causing a crash. Is there any way that I can just hand objdump an address, ...
2
votes
4answers
782 views

How do I find out which functions of a shared object are used by a program or an other library?

How do I find out which functions of a shared object are used by a program or an other library? In this specific case, I would like to see which functions in /lib/libgcc1_s.so.1 are used by an other ...
2
votes
5answers
443 views

compare two binary files

How do I diff two binary files? I have two versions of a program, version 1 and version 2. I've made a small number of changes between the two version, but unfortunately haven't been backing up ...
2
votes
1answer
443 views

Building a Control-flow Graph using results from Objdump

I'm attempting to build a control-flow graph of the assembly results that are returned via a call to objdump -d . Currently the best method I've come up with is to put each line of the result into a ...
2
votes
2answers
417 views

Function name and address missing from Linux System.map

I am doing embedded development on an AT91SAM9263 board and running into a strange problem. It is running debian Linux kernel 2.6.18.4 and is cross-compiled with arm-linux-gcc 3.4.6 and uses ...
2
votes
2answers
377 views

What does “-0x1(%edx,%ecx,1)” mean in objdump output?

Using objdump to understand a binary and I realize I'm not fluent enough in ASM syntax. What does the following notion mean? xor %al,-0x1(%edx,%ecx,1) And while you're at it - what should I ...
1
vote
1answer
61 views

Linking against so library without header files via objdump

So I have an .so file with no header files that I want to compile code and link against(long story) Anyway, I got objdump to output demangled headers objdump -g -x -C libglo_crc.so And I get ...
1
vote
2answers
52 views

Trying to assemble the output of an disassembler (such as objdump)

I've been told that assembly and dissassembly are not inverses. Apparently, you can't dissassemble a program, put that output directly into an assembler, and expect it to run correctly because ...
1
vote
1answer
78 views

Sections of a disassembled x86 elf executable and when and in wich order they are run

I'm learning currently x86 assembly and trying some reverse engineering on a regular x86 elf executable. Now there are multiple sections like init main etc. I did a bit google research but didn't ...
1
vote
1answer
182 views

How to find the function symbol in nm or objdump when using shared_ptr for abstract class?

I use shared_ptr for an abstract class ABC. ABCImpl class is the implementation of ABC. abc_ptr is a shared_ptr< ABC> points to an ABCImpl objects. In caller function, abc_ptr will call one of the ...
1
vote
1answer
226 views

What does each column of objdump's Symbol table mean?

SYMBOL TABLE: 0000000000000000 w *UND* 0000000000000000 __gmon_start__ I've man objdump but there's no such info. Anyone know what the 5 columns mean?
1
vote
2answers
102 views

Tracking disassembly of a c# program

I am trying to understand disassembly of a c# program using objdump, since I am using vsiaul c# 2008 express edition which does not display disassembly. I am running the following command to get the ...
1
vote
2answers
185 views

How to know which library a specific function is defined in?

[root@xxx memcached-1.4.5]# objdump -R memcached-debug |grep freeaddrinfo 0000000000629e10 R_X86_64_JUMP_SLOT freeaddrinfo ... (gdb) disas freeaddrinfo Dump of assembler code for function ...
1
vote
0answers
69 views

How to approximately know the function trace from crash dump from optimized windows binary?

I have a crash dump file generated from windows X86-64 binary (XXX). 00000000`005764aa : 00000000`00000abc 00000000`005d0c68 00000000`00000000 00000000`00000000 : kernel32!WaitForSingleObjectEx+0xdf ...
1
vote
2answers
349 views

how do call graphs resolve function pointers?

I am implementing a call graph program for a C using perl script. I wonder how to resolve call graphs for function pointers using output of 'objdump'? How different call graph applications resolve ...
1
vote
2answers
517 views

How to get information from objdump

I encounter a problem when reading information dumped out from an executable file in linux. The information is as follows: 804a0ea: 04 08 add $0x8, %al ... 804a0f4: a6 ...
1
vote
0answers
364 views

How to reverse the objdump's strip with only-keep-debug?

In modern linux almost all objects are stripped and splitted in two parts. One - is executable itself and second is debug symbols, stripped out from original ELF. Such files are created with objcopy ...
0
votes
1answer
29 views

objdump and resolving linkage of local function calls?

If I run objdump -d on a (linux amd64) .o file, function calls show up without the link time resolution done. Example: 90: 66 89 44 24 1c mov %ax,0x1c(%rsp) 95: 44 89 74 24 10 ...
0
votes
0answers
28 views

Change output format in objdump --syms

I reckon there are two types of output for objdump --syms. One similar to nm, and the other made of parentheses and such (see http://linux.die.net/man/1/objdump). Is there any way to force the output ...
0
votes
1answer
14 views

objdump, displaying without offsets

When dumping an executable file I want only code segment be printed standart output. Not offsets and binary form of codes.I can note achive it from man objdump.Is there a way?
0
votes
0answers
31 views

Extracting _fini in C binary

I am basically looking for a way to extract _fini address within a binary. Naive way I can think of is to use objdump and parse for _fini. Is there a better way to do this (e.g. not using objdump). ...
0
votes
1answer
39 views

What are some good resources for understanding disassembly dumps from `objdump`?

I would like to know where I can get started understanding disassembly in this format. I am familiar with OllyDbg from back in my windows days but this is a bit different, and would like to get the ...
0
votes
1answer
46 views

GCC proper visibility for shared object written in C++

I have a huge project written in C++. It's all split into multiple static libraries that are eventually linked into one final shared library which has to export only a few simple functions. If I do ...
0
votes
2answers
139 views

Why some executables don't have main function?

I "objdump -d" an executable, e.g, /bin/ls, and I found there's not any main function in the assembly code. Why?
0
votes
1answer
115 views

Difference between nm and objdump

Looking at the manuals, objdump and nm have overlapping features. When would you use each one? What was the original purpose of each command?
0
votes
1answer
142 views

What is the .data.rel.ro used for?

I am using objdump to analyze a shared object's memory usage. Along with the .data and .rodata sections I see a .data.rel.ro section. Anyone know what this used for?
0
votes
0answers
119 views

How to make objdump find source files?

I'm working on a platform where no debugger is available, thus I have to disassemble an executable with objdump in order to be able to debug it. Of course, I want to have the assembly intermixed with ...
0
votes
1answer
531 views

How to compile library with source code with NDK tools?

How to compile library with source code ? I am developing the native library with android ndk. Sometimes I got the crash dump messages from logcat. 06-18 15:24:58.545: INFO/DEBUG(24667): *** *** *** ...
0
votes
2answers
205 views

virtual and physical addresses of sections in elf files

How does objdump compute the physical address (LMA) of elf sections? As far as I can tell, elf section headers only contain the virtual address (VMA) of sections [1]. Usually, VMA and LMA are the ...
0
votes
2answers
46 views

What segment of .o file contains function xyz?

Consider a question "Which segment of abc.o contains function foo()?" Is this the same question as "What section of ELF contains this function foo()?" Sorry .. i know this is very silly. I am a bit ...
0
votes
0answers
142 views

About the DYNAMIC RELOCATION RECORDS by objdump -R

DYNAMIC RELOCATION RECORDS OFFSET TYPE VALUE 000000000061d258 R_X86_64_JUMP_SLOT chdir 000000000061d260 R_X86_64_JUMP_SLOT dup2 So it seems that it prototypes a function ...
0
votes
1answer
377 views

How do I send objdump result to a file?

I want to run objdump on an execuatble file in windows XP, and want to observe the details. However, I am unable to find option to output the result in a text file - since the output display in ...
0
votes
1answer
357 views

objdump - head ELF - Meaning of flags?

$ objdump -f ./a.out ./a.out: file format elf32-i386 architecture: i386, flags 0x00000112: EXEC_P, HAS_SYMS, D_PAGED start address 0x080484e0 $ objdump -f function.o function.o: file ...
0
votes
1answer
315 views

parsing objdump output

I was wondering if someone here had written/uses a script which parses the output of objdump and extracts opcodes from it? I have a very very trivial implementation but I'm looking for something ...
0
votes
1answer
268 views

How to find an external function definition

I am compiling a big project. This project is using shared libraries, especially lapack ones. I would want to be sure, for a given function, in which shared library the system finds it. Here the nm ...
0
votes
1answer
898 views

Help using objdump : disassembling to arm

I have an object file and am trying to disassemble it. When i use: objdump -d example.o i get an assembly in code in the file format of elf64-x86-64 i am trying to disassemble this into ARM, how do ...
0
votes
1answer
649 views

Have Objdump- D only display specific function

I am having troubles using objdump in windows command prompt for a C program. I want to display the machine code of a specific function and lines. For example, in Linux I would enter: objdump -D ...

1 2