Involves turning machine or IR code back in higher level assembly mnemonics.
0
votes
1answer
19 views
Can instructions exist in sections other than text?
Is it safe to assume that all instructions within an executable are located inside that executable's text section? I have never seen an executable with a format that violates this assumption.
2
votes
1answer
37 views
How do I turn debugging in disassembly off permanently?
Whilst debugging a console app in c# and VS2008, disassembly window appears uninvited.
I am debugging my code line by line using F11. I have break points set and it starts off well then after a ...
0
votes
0answers
32 views
Visual Studio 2012 disassembly error dialog
This is a general error with Visual Studio 2012 that has come up recently. While debugging any C++ application and after hitting a break-point, clicking "Go To Disassembly" will produce the following ...
0
votes
0answers
13 views
Extract data from a video game executable (during runtime)
So, suppose we have this video game, and want to extract some data which is not explicitly stored. How do we go about it? I have never done it, so I guess I need to be nudged in one direction or ...
13
votes
1answer
171 views
why is inlined function slower than function pointer?
Consider the following code:
typedef void (*Fn)();
volatile long sum = 0;
inline void accu() {
sum+=4;
}
static const Fn map[4] = {&accu, &accu, &accu, &accu};
int main(int ...
0
votes
2answers
75 views
How is code working after Optimising?
While studying Compiler optimizations, I simply compiled following piece of code :
#include<stdio.h>
struct fraction {
int num ;
int denum ;
};
int main()
{
struct fraction pi;
...
0
votes
1answer
35 views
Visual Studio disassembly: losing breakpoints
I'm working with Visual Studio 2010, using and .exe (without the original code so I can only see the asembler).
The code it has been generated from is similar to this one (not exactly, it has unknown ...
0
votes
0answers
43 views
Assembler library for BeaEngine? Or any decent assembler? [closed]
I'm using BeaEngine to translate byte code into information that I can use to analyze the instruction. I'm using a library that generates byte code from a string containing the instruction but it's ...
0
votes
0answers
28 views
Getting an error using Krakatau disassembler/assembler
I'm getting this error when trying to run my modified class
http://oi43.tinypic.com/sbmw5g.jpg
I changed a string from "www." to "wwwh7." so from what I've read on bytecode editing sites, this ...
0
votes
1answer
20 views
My gdb disassemble doesnt display properly
I am using GDB to analyze a binary file using layout asm and layout regs.
After I typed layout asm and layout regs, it displays properly.
However after i typed a few step commands, the screen doesnt ...
2
votes
2answers
74 views
Disassembler GLOBAL keyword
In a disassembly view of a C++ program, to what refers GLOBAL ?
I've got a lign which says :
je 0xb74d334a <_GLOBAL__sub_I_myFile.cpp+106>
I guess it is a call to myFile.cpp, but I'd like to ...
2
votes
0answers
126 views
Could someone explain about large fs:0?
:0378CED0 push ebp
:0378CED1 mov ebp, esp
:0378CED3 push 0FFFFFFFFh
:0378CED5 push 3927B50h
:0378CEDA ...
0
votes
1answer
89 views
Is possible to profile C/C++ inline functions looking at the assembly?
I want to measure the performance and in general the behaviour (how much assembly is created, etc) of some inline functions i use around my project. Other than profiling timings is it possible to look ...
0
votes
1answer
129 views
What does cmp DWORD PTR and mov DWORD PTR mean? [duplicate]
In this snippet of code which is supposed to be a loop break condition, what does cmp DWORD PTR do? What does mov DWORD PTR
mov eax, DWORD PTR [c]
mov ecx, DWORD PTR [array]
LoopStart:
cmp DWORD PTR
...
2
votes
1answer
33 views
Manipulating Debug Info
Does anyone know how to manipulate debug info generated by GCC. Specifically, I am searching for the size of the local variable "A" in debug info, Can I derive it from there?
I can not even see my ...
0
votes
2answers
86 views
Trying to figure out the following disassembly listing
I am looking at the following disassembly for a Win32 executable in IDA pro and get the snwprintf part but I don't understand the purpose of the mov ecx, [eax+4] instruction here (are they discarding ...
0
votes
3answers
126 views
OSX 64 bit C++ DIsassembly line by line
I have been reading through the following series of articles: http://www.altdevblogaday.com/2011/11/09/a-low-level-curriculum-for-c-and-c
The disassembled code shown and the disassembled code I am ...
2
votes
1answer
111 views
How does 'BL' arm instruction disassembly work?
'bl' or branch with link instruction is almost always becomes 0xebfffffe
However, the processor and GNU binutils objdump somehow know where to branch:
00000000 <init_module>:
0: e1a0c00d ...
3
votes
2answers
151 views
x86 find out operand size of instruction given only the hex machine code?
For example, given a hex: 83 E4 F0
By looking at the intel developer's manual, I can figure out that 83 means and and FO means the -16. Looking at E4, I can decode that the source/destination ...
5
votes
2answers
77 views
How do I view the disassembly of a delegate created by compiling an expression tree?
I want to see the x86 assembly being generated by .Net's just-in-time compiler. I know how to do this for "normal" code, compiled ahead of time, but don't know how to do it for code generated ...
0
votes
1answer
518 views
Disassembling a function with Immunity Debugger
I hope I'm asking this the right way but I am just getting started trying to learn exploit development. I've taken several tutorials and started off using gdb in Linux, which I am somewhat comfortable ...
0
votes
1answer
61 views
Need to generate the assembly code for structures and variables
I need to understand some internals of data structures by generating the assembly code for functions and global, local structures, variables.
From this link:
...
0
votes
2answers
74 views
Convert large amount of code to data in IDA
Well, Unfortunately I hit 'C' on a data section of a binary i had worked a lot on and saved it as i had a lot of work unsaved. I tried converting this huge section back to data but whenever i select ...
0
votes
1answer
118 views
Disassembling file that contain big data or is compressed [closed]
this is fourth day I am trying to figure out how to break down an exe.
Still having no luck, file is giving debugger error right after it is runned. I am using OllyDBG, it seems that file is either ...
0
votes
2answers
138 views
bits 16 and bits 32 in nasm
test.asm:
org 0100h
[BITS 16]
mov eax, 0
[BITS 32]
mov eax, 0
Then compile and disassemble as follows:
nasm test.asm -o test.com
ndisasm -o 0x0100 test.com
Result:
00000100 66B800000000 ...
1
vote
0answers
74 views
Processing .ELF with multiple headers for ARM Dissembler
I'm writing a simple ARM dissembler which takes an ELF file and reverts it back to its ARM instructions.
I'm having an issue with processing the ELF files which contain multiple program headers I ...
2
votes
1answer
39 views
Is it possible to disassembly monomac file?
I am trying to disassembly my monomac .net exectuable file with .NET Reflactor app but it appears it is only recognizes Windows exectuables.
Is there any application/plugin which can make this thing ...
2
votes
1answer
151 views
ollydbg opcode trace
Is there a way to save a trace of the opcode that is being executed (and not the command)?
I want to compare different trace runs, and using opcode trace (and not the evaluated commands) would give ...
1
vote
1answer
58 views
How to read and execute GDB commands from a file?
I run GDB on object file (e.g exeFile) and I want to examine it according to several commands . How can I execute these commands according to lines in a file (instead input these each GDN running) ? ...
2
votes
1answer
218 views
Disassemble and use a .obj file
I have a course (reverse engineering) in uni and i have a homework.
I got a .obj file (which was compiled with visual studio 2008), and i have to disassemble it, figure out the control structure and ...
1
vote
0answers
192 views
generating cmov instructions with c++ with microsoft compilers
In an effort to eke out some cmov instructions on an intel core 2 running windows 7 pro I wrote the code below. All it does is take a string from the console as input, apply some shift operations to ...
3
votes
2answers
178 views
Understanding stack in linux
I have a small (and vulnerable) C sample:
#include <unistd.h>
int main(int argc, char *argv[])
{
char buff[100];
if(argc < 2)
{
printf("Syntax: %s <input ...
3
votes
0answers
90 views
What may cause a minidump disassembly to differ from the binary disassembly?
I have a minidump of a crash. At the point of the crash, there is some weird looking code that shouldn't ever run successfully. Something like:
call AnObject::AFunction
test byte ptr ...
1
vote
1answer
281 views
Disassembly window in Visual Studio 2012 Ultimate is not showing
I am just starting to work with the debugger of my Visual Studio and have the following problem: When I start the debugger, the Disassembly window is just not there!
Here is an image of my Windows ...
1
vote
1answer
73 views
Inlining or identical code
How I can setup the compiler to generate identical code? For example:
inline bool iszero(int a)
{
return (a == 0);
}
int main()
{
int a = 4;
if(a == 0) // First
a = 5;
...
0
votes
1answer
102 views
Understanding reversing C prog. in assembly
I have just started learning reverse engineering (self study). I know assembly upto some understandable point. Basic instructions that pop up after disasassembling the C code are almost understandable ...
0
votes
2answers
266 views
Assembly Code- Loop
I know there is a loop here, but I can't figure out what is going on. To be more precise, what is going on in the first three lines?
0x08048d45 <phase_2+42>: lea -0x14(%ebp),%ebx
...
1
vote
1answer
128 views
Stepping past lines of source code causes Visual Studio debugger to exit?
I have a customer reporting a supposed resource leak in our product which used mixed code. So I wanted to debug into it to see what was really going on. I've been experiencing weirdness like Visual ...
10
votes
3answers
241 views
Smashing the stack example3.c confusion
Article can be found here.
I'm reading up on smashing the stack and have found myself to be getting stuck on example3.c.
0x80004a3 <main+19>: call 0x8000470 <function>
0x80004a8 ...
0
votes
0answers
78 views
What happened to _start and the arguments of __libc_start_main on 64-bit Linux?
I'm reading http://dbp-consulting.com/tutorials/debugging/linuxProgramStartup.html and trying to verify things by hand.
The disassembly of _start is given as follows:
080482e0 <_start>: ...
-2
votes
1answer
136 views
Broken program, what does this code do? [closed]
Don't have much (by much, I mean any...) experience with assembly, dissecting, debugging, or reversing. However, I do need to know what this code does. I've tried running this program thru a debugger ...
0
votes
1answer
374 views
SAR command in X86 assembly with one parameter
In a disassembled program I'm analyzing, I found the command
sar %eax
What does this do? I know that sar with two arguments performs a right shift, but I can't find what it means with only one ...
1
vote
1answer
107 views
Questions on iPhone code disassembly
This is the disassembly of syscall() on iPhone.
(gdb) disass syscall
Dump of assembler code for function syscall:
0x3195fafc <syscall+0>: mov r12, sp
0x3195fb00 <syscall+4>: push ...
0
votes
2answers
82 views
Multiple PowerPC instructions have same opcode
I'm trying to make sense of PowerPC instructions and ultimately disassemble them. I've found http://pic.dhe.ibm.com/infocenter/aix/v7r1/index.jsp?topic=/com.ibm.aix.aixassem/doc/alangref/ppc_instr.htm ...
0
votes
0answers
59 views
Jump to strange location from ObjC method [closed]
Here is the part of output from the disassembler of objc method implementation.
; Return if one of calculated values is NaN.
; $r14 = instance of of ObjC object (NSISVariable *)
; $rsi = instance of ...
0
votes
1answer
77 views
How the com disassembler knows where the code ends and the data starts
When disassembling an old .com executable file compiled from a code like this:
.model tiny ; com program
.code ; code segment
org 100h ; code starts at ...
2
votes
1answer
880 views
Methods to nail down 16 bit CRC/Checksum algorithm used by Windows CE executable?
I need to reverse engineer CRC/Checksum algorithm implemented by windows CE executable. Being propritory protocol, it does not say anything about CRC/checksum algorithm. However, There is console ...
5
votes
3answers
318 views
Disassembly view of C# 64-bit Release code is 75% longer than 32-bit Debug code?
EDIT
I tested release in 32 bit, and the code was compact. Therefore the below is a 64 bit issue.
I'm using VS 2012 RC. Debug is 32 bit, and Release is 64 bit. Below is the debug then release ...
4
votes
3answers
246 views
How to disassemble movb instruction
I am writing a disassembler and I was reviewing the instruction format (and doing some disassembling by hand) and I ran into an instruction that I can't seem to be able to decode.
The output for that ...
0
votes
0answers
149 views
x86 binary to MIPS
I have an USB DVB stick, which hasn't got any open source drivers for Linux, but has a patched linux TV kernel source tree and some object files for x86 and x64. This works well on a x86 or x64 Linux ...

