Tagged Questions

OllyDbg (Olly Debugger) is a Win32 debugger.

learn more… | top users | synonyms

4
votes
2answers
62 views

windows process memory layout

So I was playing with Olly debugger, sniffing around what I can yet find out about windows and I pressed that M button and it popped up that memory map window. So I googled up some articles on the ...
4
votes
4answers
263 views

Help deciphering a few lines of assembly

I have found these few lines of assembly in ollydbg: MOV ECX,DWORD PTR DS:[xxxxxxxx] ; xxxxxxxx is an address MOV EDX,DWORD PTR DS:[ECX] MOV EAX,DWORD PTR DS:[EDX+116] CALL EAX Could someone step ...
4
votes
1answer
180 views

Is there a Perl module that can automate ollydbg?

Is there a CPAN module that can automate the famous ollydbg debugger? If yes, could someone provide such module and some tutorials/documentaitons/example about it?
3
votes
1answer
120 views

Reverse engineering on my simple C program

I would like to start learning reverse engineering. So I decided to start simple. I created this simple program: #include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { ...
3
votes
2answers
107 views

Reverse Engineering, Left Bit shift by seven

I've been trying to reverse engineer a function of a game but I'm kinda confused. I'm pretty new to reverse engineering (I'm using ollydbg btw) so I don't really know about all the tricks and details ...
2
votes
1answer
474 views

OllyDbg can't debug visual studio exe

I've just created a new vc++ exe with this simple code: #include<stdio.h> #include<string.h> #include<windows.h> int ExceptionHandler(void); int main(int argc,char *argv[]){ char ...
2
votes
2answers
81 views

What does the quote mean in ollydbg?

What does this mean in the 2nd column? == | | | | ==
2
votes
1answer
396 views

Disassemble a Dynamic Link Library with OllyDbg

Is there a option I can choose how to launch the DLL(like when debugging a dll project in visual studio)? As it seems to me when I drop the DLL into OD,the only option I have is to launch it by ...
2
votes
3answers
249 views

Explanation of the disassembly of the simplest program (x86)

The following code int _main() {return 0;} Compiled using the command: gcc -s -nostdlib -nostartfiles 01-simple.c -o01-simple.exe gcc version 4.4.1 (TDM-1 mingw32) OllyDbg produced this output: ...
2
votes
2answers
195 views

Debugging and Analyzing a Trojan

I'm interested in using something like OllyDbg to examine a program that potentially has Trojan-like characteristics. Does anyone know any good tutorials on how to do this safely? Basically the ...
2
votes
2answers
402 views

Ollydbg condition

I need Ollydbg to pause when one of the registers contains a certain string. Any way I could accomplish that?
2
votes
4answers
563 views

Modifying a program to fake a button press

I have an MFC application that I was given (without source code) which opens a window with an 'Update' button, which then performs a very long update after being clicked. I'd like to modify the ...
1
vote
1answer
43 views

Assembly stack index address

I'm trying to debug a program with ollydbg and I have a doubt to index mode address using SS prefix. Here's a screenshot: At this point, the instruction MOV BYTE PTR SS:[EBP-1],BL will move the ...
1
vote
3answers
80 views

What happens if I delete the Relocation table address from PE Header?

I'm analyzing some cracks, and one of them changed the Relocation Table address and size to 0. What the cracker was trying to achieve with this? To provide more information, the objective of the ...
1
vote
1answer
131 views

Patching code into the MASM-compiled executable file

I have written a simple program in MASM, like: .386 .model flat, stdcall option casemap:none .data szName db "MASM", 0 .code start: mov eax, DWORD PTR [szName] ret end start The i check the code ...
1
vote
3answers
303 views

Locating OEPs in Packed EXE Files

Are there any general rules, on how to realiably locate OEPs (Original Entry Points) for packed .exe files, please? What OEP clues to search for in debugged assembly language? Say there is a Windows ...
1
vote
2answers
96 views

Replacing a XORed string in an excutable (x86)

I have an executable that I am trying to patch. The executable is storing strings using XOR encryption. I used XORSearch to find the string im looking for. It returned: Found XOR FD Position 3E22: ...
1
vote
4answers
201 views

Why are the cpu-registers in OllyDbg not sorted alphabetically?

In OllyDbg the registers window, among other things, lists the standard cpu-registers: EAX ECX EDX EBX Is there a particular reason why EBX is displayed last?
1
vote
1answer
667 views

How to change value of EIP in ollydbg?

I double clicked on EIP in register window,but seems un-editable. Why is EIP special?How can I change it?
1
vote
3answers
403 views

How to understand the register window of ollydbg?

What does Z 1 DS 0023 32bit 0(FFFFFFFF) mean?
1
vote
2answers
734 views

What's the principle of ollydbg's memory breakpoint?

It seems only 1 memory breakpoint can be set, and it seems doesn't matter at which line the memory breakpoint is set,very weird,anyone can explain?
1
vote
1answer
526 views

How to open executable binary without running it in ollydbg?

When I try to open a PE executable , it's automatically run. How can I just open it statically without running it? I just want to see the binary file in hex format.
1
vote
2answers
369 views

Patching Arm Executable?

I must patch an arm executable in my Pocket PC. I am dissassembling the ARM executable with IDA Pro. But I can not edit binary. As you know Ollydbg let us to edit binary / add assembly code (Right ...
1
vote
1answer
788 views

Decompiling x86 PE binary to C?

I'd like to know if there's any way to generate the C code of a x86 PE binary. I don't really need this, I just want to learn how some closed-source software are working. From my common sense, I ...
1
vote
1answer
404 views

Wherein newbie disassembly queries are made

I'm relatively(read: stupid newbie) familiar with disassembly but this bit stumped me: I have a set of save files compressed with zlib and a game that loads them. Their structure is known and once ...
1
vote
2answers
264 views

Will arguments to a function be passed on the stack or in a register?

I'm currently analyzing a program I wrote in assembly and was thinking about moving some code around in the assembly. I have a procedure which takes one argument, but I'm not sure if it is passed on ...
0
votes
1answer
63 views

Loading Windows Symbolics in OllyDbg

I am using windows XP SP3 and OllyDbg. Also, I have installed windows symbols from this address: ...
0
votes
0answers
49 views

Execute remote function with memory address as parameter

I'm trying to execute a function in a running (old) Win32 Borland application (Window has class OLW_WINDOW). By using OllyDbg I've found out that the function has one parameter which is a memory ...
0
votes
1answer
69 views

calling IsDebuggerPresent using inline assembly

I'm on a Windows 7 machine and I tried opening up kernel32.dll in IDA and IDA says that the address of the IsDebuggerPresent function is 0x77e2b020. I'm trying to call the function using inline ...
0
votes
1answer
99 views

OllyDbg throwing exceptions

I have an AMD CPU, every time am trying to debug anything the ollydbg keeps throwing exceptions for no reason, I pass it by "Shift + F7/F8/F9", and at the end it throw exception says "EIP = ...
0
votes
1answer
109 views

Assembly Absolute JMP/CALL to Relative JMP/CALL Tool/Plugin?

I have this program i'm trying to reverse engineer, I don't know whether or not it was the compiler's optimizer or obfuscation.. But now some parts of the code that call other functions are calculated ...
0
votes
1answer
146 views

msvcp60.dll imported function names on idapro and ollydbg

I am currently reversing a code that imports some functions from msvcp60.dll when I open the code on IDApro the function names are very long and doesn't give any hint about what are they doing. and ...
0
votes
0answers
48 views

Dump signatures with ollydbg

Is it possible to dump signature in a file with ollydbg? Right know my dump doesn't contain signature when I dump. With Signature I doesn't mean sequence of bytes to recognize api's or packers, some ...
0
votes
1answer
103 views

Base addresses not the same

When I load up an executable in IDA pro and OllyDbg, the addresses of the same instructions start up at different locations. This could be because they are different base addresses. I would like the ...
0
votes
1answer
207 views

Ollydbg instructions before program

I am new to reverse engineering, and I have been looking at a simple program: char* a = "hello world"; printf(a); However, when i open this in ollydbg, I am not taken right to the assembly as I ...
0
votes
2answers
428 views

What are the differences between OllyDbg and WinDbg?

My simple understanding is OllyDbg is a user mode debugger, which you could use to debug "normal" apps. WinDbg is a kernel mode debugger, which you could use to debug itself. Is that right?
0
votes
2answers
266 views

Ollydbg Comment Column - win32 api

From what i see in the various videos/screenshots, whenever you load an executable, the win32 api calls are visible in the comment column in the main CPU window. How can one achieve this? In my ...
0
votes
1answer
544 views

How to set this kind of breakpoint in ollydbg?

I want to break on where Executable Module X is called, but I've no idea which function is actually called. Is it possible to set this kind of matching-all breakpoint?
0
votes
1answer
100 views

How can I watch the complete disassembly code when open PE binary in ollydbg?

I opened cstrike.exe(for game Counter Strike) with ollydbg, but the disassembly code isn't complete,it starts at 01401000 and stops at 0140BFFF(I mean it should at least start from 00000000 to be ...
0
votes
2answers
197 views

About reverse with ollydbg

When I debug an EXE in it,will first stop on a specific line,how does OD know where to initially stop? And the disassembly code is pretty short, is it true that OD only displays stuff within a single ...
0
votes
1answer
343 views

Calling DLL from Assembly? Dis. Ollydbg

I'm using Ollydbg to disasemble a program. What I need to do is inject code into the program and save an EDX value at a certain point. I'm guessing the easiest way would be for me to create a dll with ...
0
votes
4answers
75 views

Tips for debugging a made-for-linux application on windows?

I'm trying to find the source of a bug I have found in an open-source application. I have managed to get a build up and running on my Windows machine, but I'm having trouble finding the spot in the ...