Tagged Questions

Disassembling is the process of analysing an executable or object code binary and outputting an assembly language source code text representation which can be read and understood by a programmer.

learn more… | top users | synonyms

25
votes
3answers
390 views

.NET functions disassembled

When disassembling .NET functions, I notice that they all start with a similair pattern. What does this initial code do? This code appear before the actual code for what the function is supposed to ...
12
votes
5answers
3k views

How to write a disassembler?

I'm interested in writing an x86 dissembler as an educational project. The only real resource I have found is Spiral Space's, "How to write a disassembler". While this gives a nice high level ...
12
votes
11answers
6k views

How can I see the Assembly code for a C++ Program?

How can I see the Assembly code for a C++ Program ? What are the popular tools to do this ?
11
votes
6answers
12k views

How can I force GDB to disassemble?

I'm trying to disassemble a program to see a syscall assembly instruction (the INT instruction, I believe) and the handler with GDB and have written a little program (see below) for it that opens and ...
9
votes
3answers
218 views

Why does the compiler generate this code?

I disassembled an object file (most likely generated using the Visual C++ compiler) using DumpBin and saw the following piece of code: ... ... mov dword ptr [ebp-4],eax // Why ...
9
votes
1answer
2k views

Debugging disassembled libraries with gdb

in Linux and Mac OS X I can use stepi and nexti to debug an application without debugging information. On Mac OS X gdb shows the functions that are called inside the library, although sometimes ...
9
votes
2answers
538 views

Reverse Engineering old paint programs

I've got a couple of really old MSDos based paint programs. They work on palette indexed image buffers. They have a number of spectacular shape drawing tools, brushes and effects that simply do not ...
8
votes
4answers
1k views

How to disassemble the main function of a stripped application?

Let's say I compiled the application below and stripped it's symbols. #include <stdio.h> int main() { printf("Hello\n"); } Build procedure: gcc -o hello hello.c strip --strip-unneeded ...
8
votes
4answers
879 views

Help me understand the assembly code

I am trying to understand the assembly level code for a simple C program by inspecting it with gdb's disassembler. Following is the C code: #include <stdio.h> void function(int a, int b, int ...
7
votes
4answers
484 views

What are efficient ways to debug an optimized C/C++ program?

Many times I work with optimized code (sometimes even involving vectorized loops), which contain bugs and such. How would one debug such code? I'm looking for any kind of tools or techniques. I use ...
6
votes
3answers
206 views

“Art of Exploitation” disassembly example isn't the same (C code)

I'm following the example in the Art of Exploitation book to try and disassemble a program in C, while the book comes with its own Linux LiveCD, I prefer using BT5 (32 bit). The code example is very ...
6
votes
2answers
187 views

What can be the signature of this method?

I am trying to identify private apis of Quartz framework. I have a list of bunch of private private APIs but don't have their signature. I would like to put one of them on table for discussion, so ...
6
votes
1answer
157 views

Searching for a nice way to define rules for decompiler, need advice

I am working on a very simple decompiler for MIPS architecture and as I progress I have to define lots of rules for code analysis, for example "if this opcode is lui and next opcode is addiu then ...
6
votes
8answers
435 views

Why is a function executed from the same memory address each time?

I'm disassembling an executable: (gdb) disas main Dump of assembler code for function main: 0x004012d0 <main+0>: push %ebp 0x004012d1 <main+1>: mov %esp,%ebp ... Each time ...
6
votes
10answers
1k views

reverse engineering c programs

every c program is converted to machine code, if this binary is distributed. Since the instruction set of a computer is well known, is it possible to get back the C original program?
6
votes
8answers
4k views

Is there a way to prevent Reflector from being able to reflect my source code?

Is there a way (reliable and preferably not commercial) to prevent from Reflector to reflect my source code??? Thanks, Adi
5
votes
4answers
687 views

Modify Emdeded String in C# compiled exe

I have an issue where I need to be able to have a compiled exe ( .net 3.5 c# ) that I will make copies of to distribute that will need to change a key for example before the exe is sent out. I cannot ...
5
votes
2answers
1k views

Is there a disassembler + debugger for java (ala OllyDbg / SoftICE for assembler)?

Is there a utility similar to OllyDbg / SoftICE for java? I.e. execute class (from jar / with class path) and, without source code, show the disassembly of the intermediate code with ability to step ...
5
votes
2answers
368 views

Write Secure Cocoa Code

Im making an application in cocoa and wanted to see if some strings in it were easily accessible so I ran OTX on it and sadly all of my code was found. Is there a method I can use to make my code more ...
5
votes
3answers
2k views

Visual Studio 2008: How to view disassembled code for a DLL that is not executing at the moment

I'm using Visual studio 2008 to track down a bug in an executing process. I have attached to the process and identified the module of interest. (It happens that debug symbols for this module have been ...
5
votes
5answers
1k views

What are some resources for learning MSIL?

Can someone please give me a link to a tutorial or answer how to read msil. I think once I learn how to read this it could be a very useful tool.
4
votes
1answer
311 views

Disassemble an OpenCL kernel?

I'm not sure if it's possible. I want to study OpenCL in-depth, so I was wondering if there is a tool to disassemble an compiled OpenCL kernel. For normal x86 executable, I can use objdump to get a ...
4
votes
1answer
144 views

Disassembled gcc output appears to do a “call 0” instead of “call function-offset”, but works correctly

I had just a look at a very simple SPARC assembly output that I got from this C programm: int addition_func(int a, int b) { return(a+b); } void main() { int a = 20; int b = 19; int res; res ...
4
votes
2answers
946 views

find out what functions a static C library has

I have a static C library (say mylib.a) and I was wondering if it's possible to find out what functions are implemented inside that file. I don't have a corresponding header file. what I need is like ...
4
votes
3answers
2k views

objdump -S - source code listing

How does objdump manage to display source code? Is there a reference to the source file in the binary? I tried running strings on the binary and couldn't find any reference to the source file ...
4
votes
2answers
627 views

Is it possible to disassamble Visual FoxPro 9.0 exe file?

I have a legacy FoxPro exe application. Source codes are not available (it was written in outsourcing and source codes have been never delivered). There is a request to write exactly the same ...
3
votes
1answer
199 views

objc_msgsend in iPhone disassembly

I'm trying to figure out what method is being called in the following bit of disassembly but I have no idea what's happening. I understand that with objc_msgsend the first argument is the object ...
3
votes
1answer
111 views

class constructor disassembly

There is a small section of disassembly after the call to the constructor, that does not make any sense. Here it is, .text:011A18F0 loc_11A18F0: ; CODE XREF: main+5Bj ...
3
votes
2answers
275 views

What is the meaning of “static synthetic”?

I am looking at some disassembled code obtained from Java bytecode. I see some declaration as follows: .method static synthetic access$0()Lcom/package/Sample; I am not able to figure out what the ...
3
votes
1answer
539 views

Is it possible to convert F# code to C# code?

The reason why I am asking is that I'm learning F# and would like to attend TopCoder competitions. However, F# is not among the list of languages supported there. But C# is on the list (to be honest, ...
3
votes
2answers
762 views

Switch Case Assembly Language

I am looking at the assembly language code of a switch statement. I understand how the code works and what the cases are. My question is how do I decide on the case names? Below is the assembly ...
3
votes
4answers
242 views

Lua equivalent to Python dis()?

In Python you have the ability to view the compiled bytecode of a user-defined function using dis. Is there a builtin equivalent to this for Lua? It would really useful!
3
votes
4answers
278 views

Can I debug an Exe

I need to compare few function calls and signature between my application and an working application. Here I don't mean any way to reverse engineer or access the source code of the other application , ...
3
votes
2answers
310 views

Converting some assembly to VB.NET - SHR operator working differently?

Well, a simple question here I am studying some assembly, and converting some assembly routines back to VB.NET Now, There is a specific line of code I am having trouble with, in assembly, assume the ...
3
votes
2answers
562 views

Printf in assembler doesn't print

I have got a homework to hack program using buffer overflow ( with disassambling, program was written in C++, I haven't got the source code ). I have already managed it but I have a problem. I have to ...
3
votes
6answers
765 views

What does * address(found in printf) mean in assembly?

Disassembling printf doesn't give much info: (gdb) disas printf Dump of assembler code for function printf: 0x00401b38 <printf+0>: jmp *0x405130 0x00401b3e <printf+6>: nop 0x00401b3f ...
3
votes
3answers
1k views

How to identify the Programming Language used to Develop a Software? [closed]

Possible Duplicate: Find Programming Language Used So, I have an application consisting of an executable (exe) file and a DLL. Is there a way I can find out the specific language used to ...
3
votes
2answers
434 views

tell gdb to disassemble “unknown” code

is it possible to configure gdb in order to debug assembly code when there are no debug symbols or no sources available ? I mean showing assembly instruction by assembly instruction when performing a ...
3
votes
2answers
642 views

How does the MethodImplAttribute work in .NET?

I was investigating some framework code (the System.AppDomain.GetDynamicDir method) and this was all the assembler showed: [MethodImpl(MethodImplOptions.InternalCall)] private extern string ...
3
votes
2answers
1k views

Are there any good VB/C# x86 disassembler libraries?

I'm looking for a library that will disassemble x86 code into some sort of object model that I can then use to write routines that analyze the code. I'm not interested in a library that converts x86 ...
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
1answer
86 views

x86 mov opcode disassembling

I have built in IDE x86 debbuger which disassemble this: First case: 65 48 8B 05 30 00 00 00 mov rax,gs:[rel $00000030] Second case: 65 48 8B 04 25 30 00 00 00 mov rax,gs:[+$0030] ...
2
votes
1answer
80 views

what does machine code “0x48ff25” mean in amd64 os [closed]

Could anyone tell me what does "48ff25" means in the following disassamble code? 00000000`7745b0ac 48ff2525801000 jmp qword ptr [ntdll!NlsAnsiCodePage+0xe3e (00000000`775630d8)] I have check ...
2
votes
3answers
59 views

stack operations on a basic C program

Im disassembling this basic C code, trying to figure out what operations are done on the stack. Im doing in it on a vm, 32 bit, gcc 4.4.3, ubuntu based distro. I compiled the code with this flags. ...
2
votes
3answers
68 views

Deassembling memory function on Windows in C/C++

I use MSVC 2008. Let's say I have a function in my code: int foo() { return 2 + 5; } What tools can I use to obtain ASCII representation of this routine in X86 assembler? void bar() { ...
2
votes
1answer
303 views

Translation of machinecode into LLVM IR (disassembly / reassembly of X86_64. X86. ARM into LLVM bitcode)

I would like to translate X86_64, x86, ARM executables into LLVM IR (disassembly). What solution do you suggest ?
2
votes
1answer
92 views

Assembly code from Ocaml

I have simple ocaml file test.ml 1 + 2;; I compiled it. can i see assembly output of this code? Maybe ocaml packet has any tools for this? Thank you.
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
5answers
266 views

How to reconstruct type and data structure in disassembled C/C++ program?

I have made a binary executable file disassembled using disassembler like IDA Pro. Now, I plan to recognize type and data structure information as much as possible. Is there any resource reference or ...
2
votes
2answers
376 views

x86 asm disassembler library

Are there any libraries, callable from .NET, where I can pass in binary data and have it disassembled to x86 assembly code?

1 2 3