The Interactive Disassembler, more commonly known as simply IDA, is a disassembler for computer software which generates assembly language source code from machine-executable code.

learn more… | top users | synonyms

0
votes
0answers
20 views

Tell IDA Pro that a memory area contains a pointer table

I have a binary image for an embedded CPU where a memory area contains a number of pointers to entry points into the binary. This is an interrupt vector table in the binary used by the CPU. How can I ...
1
vote
0answers
15 views

Retun with debug in IDA PRO

I warn I know English is not perfect.I'm is beginner in ida_pro before I used Ollydbg . after I start debugging, and I press pause I appear in module ntdll more I push Ctrl + F7 and instead to appear ...
0
votes
1answer
93 views

Specify a breakpoint for all a function call in Ida Pro 6.1

In Ida pro 6.1, i have a dll which have a twenty call to the "CreateFileA" and "CreateFileW" function API. I would like to specify breakpoints for all the CreateFileA/CreateFileW automatically. I ...
0
votes
1answer
26 views

How to Assign/Bind a known function to a variable?

I wonder how to make IDA-Pro Variable bound to some funcion so the next time I will double click the var it will point and send me to the function. v1 = this *v2 = Known-Function At Some ...
0
votes
1answer
140 views

Assembler ARM Force a boolean method to return always TRUE

That's the end of my code that I thing contain the return function. MOVW R1, #0x7368 ADD R0, PC ; MOVT.W R1, #0xF ADD R1, PC ; LDR R0, [R0] ...
0
votes
1answer
121 views

How to `FindWindow` a window that doesn't show up in Spy++?

I'm debugging a Windows application with IDA Pro and I see that at one point it calls FindWindowA and successfully locates a window with the given class name. However when I use Spy++ to locate the ...
3
votes
1answer
308 views

IDAPro Loading C++ header files into IDAPro For structures

Anyone know how to do this? Using File>Load C header file fails over too much wrong code.
1
vote
2answers
190 views

How do I set size of an element of an array in IDA Pro?

How do I set size of an element of an array in IDA Pro ? I'm creating a structure where I want to have array of DWORDs. But it defaults to bytes. I have IDA Pro 6.1
0
votes
2answers
751 views

What's debug section in IDA Pro?

I try to analyze a dll file with my poor assembly skills, so forgive me if I couldn't achieve something very trivial. My problem is that, while debugging the application, I find the code I'm looking ...
0
votes
0answers
151 views

Need Assistance with IDA Pro and Bypassing a Login [closed]

I am new to IDA, and I really need help with the Hex editing part of it, or like if you can add lines to the loc_xxxx things or w/e. I am trying to bypass the login to a program I use, but now they ...
0
votes
1answer
66 views

Does exists a programs that can show me the differences between 2 executables?

Does exists a programs that can show me the differences between 2 executables? I need a program that receive in input 2 executables and can show me/compile a diff files with all the differences.
3
votes
0answers
130 views

Disassmbly in emacs [closed]

Just like tools as IDA-pro or whatever, but how to disassemble dll/so(C++/C) or pyc(python) files in emacs? If possible, share some disassembly snippets/plugins for emacs please. Maybe Emacs can ...
0
votes
1answer
485 views

Assembler STRB instructions armv7

I have this code: STRB R2, [R0,R1] and its opcode is 42 54 I'm using this table http://imrannazar.com/ARM-Opcode-Map but I so 54 is the opcode of my strb istructions. What I want is ...
0
votes
1answer
186 views

Assembler patching compare istructions and branch

How Can I make "true" this istrution? CMP R0, #0 What I want to do is for example make CMP R0,R0 or CMP #0, #0 00 28 is the op code. I try to do 28 28 without results! Another ...
0
votes
2answers
515 views

Patching a simple c program with IDA PRO get segmentation fault

This is my program: #include <stdio.h> int main(){ int var=5; if(var==5) printf("Accesso effettuato!"); else printf("Access denied"); } I change the op code... in the hex edit like in ...
0
votes
1answer
304 views

Patching iphone calculator.app with IDA for testing

I'm trying without success to patch iPhone calculator to replace the + function with the - function. I do some stuff but when I try to launch it from my iPhone it crashes. What I do is: Opening the ...
2
votes
1answer
646 views

How to patch iPhone Apps using IDA /pro?

I am trying to patch my own programs which I created for this task. Unfortunately, once I do really simple patches and send the App to my iPod touch, it crashes as soon as I launch the App. I'm ...
0
votes
1answer
169 views

What string in AeDebug\Debugger attaches IDA Pro as a debugger?

I need to debug some binary crash using IDA Pro. What is the command-line in the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug\Debugger value that starts IDA Pro attached to ...
0
votes
1answer
293 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
366 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
1answer
529 views

How do I edit IDA Pro function xrefs?

IDA is very persistent in its mislabeling of a function call I'm making (it's hand-written assembler, but I've verified it in a debugger). It was working before, but as I've been patching in new code ...
4
votes
5answers
1k views

C++ name mangling by hand

I am writing a script for the IDA Pro disassembler in Python using the idapython plugin. Using this, I am able to fill in the gaps where IDA's auto-analysis falls short. One area that has me stumped ...
1
vote
4answers
326 views

whats going on v5 = *(_Byte *)(this + 4)?

I am looking at a code dump from IDA pro. There is a function which as this layout: garbled_name(int this... unsigned int v5 ; v5 = *(_Byte *)(this + 4); ... What I am really curious ...
0
votes
1answer
312 views

IDA Pro previous function

OK so I'm in the Graph View Mode of IDA Pro and I'm looking at a function. Then this function calls another function and then I click on that function name I'm taken to its assembler code. Now my ...
0
votes
1answer
222 views

Can't decode a simple ARM function prototype from a dissasembly?

I can't figure out the prototype for this simple function: In stack: Function call: That's what I got so far, and it causes an error. //No idea void CameraDeviceCreate(int one,int two,int* ...
2
votes
1answer
117 views

IDA(4.9) Is it possible to change definitions of imported functions?

Is it possible to change argument types/names of arguments of imported functions like StretchBlt in IDA 4.9? It's painful and error-prone to manually change from ... .text:0040A49E ...
1
vote
2answers
914 views

Installing scripts on IDA Pro

Around the net I've seen reference to "scripts" for IDA Pro, but can't work out how to load or install them for IDA Pro 4.9 Freeware Version. How do I do this? In particular I wish to use PE Scripts. ...
0
votes
3answers
3k views

How can I get IDA Pro to “see” xrefs to a string?

Currently, I'm disassembling a Mach-O executable in IDA Pro. I've gone through and found the string I'm interested in, but when I try to find xrefs to it, none can be found. I'm sure that the strings ...
1
vote
2answers
232 views

Perl AND IDA PRO

Could someone provide a good link of documenation/material/examples of IDAPERL (a plugin to add perl scripting and automation support to IDA PRO ) i see there are many documentation about python and ...
2
votes
4answers
983 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
2answers
461 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 ...
72
votes
10answers
6k views

How can I find the data structure that represents mine layout of Minesweeper in memory?

I'm trying to learn about reverse engineering, using Minesweeper as a sample application. I've found this MSDN article on a simple WinDbg command that reveals all the mines but it is old, is not ...