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
1answer
25 views

Extract loaded debug symbols into .pdb

I'm currently reversing a new application and encountered a strange behaviour: Browsing the running application with 'Cheat Engine' reveals the function names retrieved by the loaded symbols. An ...
1
vote
0answers
20 views

Is decompiled __thiscall expression a pointer to a function?

I am doing static analysis on a Win32 .dll using IDA Pro 6.3 and am using the Hex-Rays decompiler in tandem with the IDA disassembler. I'd like to understand what this line does. v4 = (*(int ...
0
votes
1answer
30 views

IDA Pro python idaapi

Hello I have a fast question. I have been trying to save a full memory dump in IDA Pro in a variable to perform a search with a python script but I did not find the correct function to do it using ...
0
votes
1answer
20 views

Hooking a _userpurge function c++

I want to hook a function from a x86 executeable. That's the functions prototype decompiled with the hex-rays plugin for IDA: int __userpurge sub_43CE70<eax>(int a1<eax>, int a2, char a3, ...
0
votes
0answers
29 views

ida pro debug stripped android shared lib

I am using IDA Pro to debug a stipped android shared library, and found system calls are not recognized automatically but static analysis will do. I want to have the same function name as static ...
0
votes
1answer
61 views

Getting address of Lua State pointer to get result in outer program

I would like to know how it's possible to get the address of Lua_State from program which uses Lua. Im not really expieranced with Assembler but I know C++ pretty well. This is how source should look ...
2
votes
1answer
80 views

iOS executable file without main function

I created a test app and then exported as IPA file. I used IDA pro to look into the executable binary file. I found that the main function is called by start subsroutine: BLX _main So I concluded ...
2
votes
1answer
93 views

Creating a basic stack overflow using IDA

This program is running with root privileges on my machine and I need to perform a Stack overflow attack on the following code and get root privileges: #include <stdio.h> #include ...
1
vote
1answer
94 views

How can I get SEL (@selector()) from object file (Mach-o)? how SEL stored in Mach-o?

From objc sources we can see that SEL is defined as typedef struct objc_selector *SEL; I have disassembly my dylib with idaq, and I did finde call of _MSHookMessageEx function, that is linked from ...
0
votes
0answers
54 views

Problems writing a plugin to ida pro in c++ Because of different versions

I'm trying to write a plugin for ida and I'm pretty stuck. Im using the newest ida pro version (6.1). It turns out that I used some things that not in use on this version. How do I solve the problem ...
0
votes
0answers
57 views

debugging C++ based app in windows 8

I have a windows 8 metro style app which is made from C++. (I am assuming this because there is no trail of HTML/JavaScript nor .net Assembly codes beside some interface definition. if there is a ...
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
0answers
112 views

export symbols from IDA pro for use in GDB

I have a dylib file a2.dylib I disassembled in IDA pro which is stripped of symbols. I have used a1.dylib which has symbols albeit older version of a2.dylib with Bindiff to diff out function names to ...
0
votes
1answer
46 views

Declare multiple struct fields

When a struct is malloc'd, it is obvious how big that struct is. It is very tedious however to declare 64 dummy dword fields for a struct of 256 bytes. Declaring the struct to have a fixed size array ...
1
vote
2answers
115 views

Assembling error in IDA Pro 6.1

I need to modify a DLL. I need to patch cmp byte_1075A02C, 0 To mov byte_1075A02C, 1 I tried to use the Patch->Assemble command in IDA Pro, and i have a "Invalid Operand" message. ...
0
votes
0answers
44 views

How to see the content of disassembly function in IDA 6.1

I took C library (closed of course) and use the IDA to disassembley it. I see the functions on the left column but how do I create headers automatically with this tool? Look at the picture.
0
votes
2answers
165 views

Pushing offset of procedure in asm?

I am trying to acquire a cryption method from an executable file. I have unpacked and started to analyze with IDA Pro. I have encountered with a code that I couldn't able to understand in any way. ...
0
votes
2answers
44 views

keep getting access violation after setting a breakpoint with winappdbg

i am using winappdbg framework to build a debugger in python. i can set some breakpoints using the event.debug.break_at(event.get_pid(),address) in order to set the breakpoint but after setting ...
0
votes
2answers
83 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
0answers
203 views

Debugging ARM with IDA Pro and armlinux_server

I'm trying to debug native ARM applications from Android phones using IDA Pro. I realize that IDA comes with armlinux_server already packaged, and a few other links I've read have implied that I ...
0
votes
1answer
41 views

Can the 'r' be removed from a function stack

On the processor I'm working on in IDA, it does not automatically put the return address onto the stack. But IDA in it's very x86 ways names the first word on the parameter space as 'r' and will not ...
0
votes
1answer
112 views

IDA Pro get Grey comments

I have an iOS App disassembly which has the following block: There are 'greyed out' comments in the picture of great interest which we want to capture from IDAPython. Such as which selectors are ...
0
votes
0answers
135 views

What do IDA Pro pseudocode comments like “// esi@2” mean?

For example, I am studying a subroutine in C "pseudocode" (generated by IDA Pro's Hex-Rays plugin) which contains the following variable declarations: int v1; // esi@2 int v2; // ecx@3 ...
0
votes
0answers
60 views

idapython set BP on every function inside a function

I have this little piece of code I am trying to get to work. I want to set a breakpoint on every function inside a function. I tried to set Functions(startOfMyFunc(), endOfMyFunc()) but that seems to ...
0
votes
0answers
171 views

IDA PRO Hex-Rays, Function Reconstruction Variables? eax@34, etc

I am decompiling a delphi program so the calls are really messed up for static analysis. I am trying to make sense of one large function which has over 120 variables. In hexrays I can see a lot of ...
1
vote
1answer
114 views

IDA Pro script to resolve indirect API calls?

Often, especially when dealing with malware files, you'll end up in a situation where all the APIs are dynamically resolved at runtime inside a given buffer, this approach considerably slow down the ...
0
votes
1answer
128 views

Embed a tracing function in assembly code using IDA pro

I have to spy on a C++ DLL. I would like to insert trace calls inside the assembly code, e.g modifying the code to put a small code that would trace some variable into a text file. I do not have ...
1
vote
2answers
120 views

IDA pro Imports

i have been delving into ida Pro for the last couple of weeks to get a bit of a background. Something that has been bugging me for a long time though is the seemingly lack of support for pulling out ...
0
votes
0answers
94 views

Custom subview in IDA Pro with a plugin

I'm working on a plugin for IDA Pro, and I have a little roadblock. I need to create a custom subview. Going through the SDK I found. From what little I could find in the documentation and the web I ...
0
votes
2answers
73 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 ...
1
vote
0answers
87 views

Is that possible to locate the 'HOME' key press in IDA? [closed]

I am using IDA Pro and trying to decompile a dll file compiled with delphi 2007. This program was triggered by pressing 'HOME' key, so I am wondering if it is possible to locate the 'HOME' key event ...
0
votes
1answer
109 views

Generate control flow chart from ARM assembly

Currently I have some ARMv7 assembly code extracted from iOS 5 App with the help of IDA Pro, I would like to generate a control flow graph based on those assembly code. Is anyone can recommend the ...
0
votes
0answers
151 views

IDA Pro, Reading and Reversing Functions. PPC

I have been working on some things in IDA and have come to a complete stop as a result of what I am trying to do now. Basically I am trying to modify text (the text, time displayed, reason for the ...
3
votes
1answer
114 views

.NET Disassembling, edit and patch

I need to edit a .NET executable. I'm new to HEX editing. I have imported it to IDA 6.1 Pro and edited it in IDA-View Window. Original: ldstr "Uri : " I changed to (Right click>Manual...(Manual ...
2
votes
1answer
208 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 ...
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] ...
6
votes
2answers
91 views

What is the effect of using JMP on a function address?

I was looking at a program in IDA as i was trying to figure out how a certain function worked, when I came across something like this: ; C_TestClass::Foo(void) __text:00000000 __ZN14C_TestClass7FooEv ...
2
votes
2answers
257 views

Identify and intercept function call

I'm developing a launcher for a game. Want to intercept game's call for a function that prints text. I don't know whether the code that contains this function is dynamically linked or statically. So ...
0
votes
1answer
421 views

IDA Pro string function

I have this binary file that I wish to edit, however after loading it, all strings are in some sort of gibberish symbols. Is there anyway to format it?
0
votes
0answers
58 views

Feed line numbers to IDA Demo (convert debug info)

I'm using IDA Demo to analyze ELF SO files for Android on ARM. The file is unstripped - it has debug info in DWARF format. IDA Demo can process debug info in the following formats: PDB (Microsoft ...
0
votes
1answer
312 views

In IDA Pro scripting and APIs (IDC, python, etc), how do I add a struct member whose type is a pointer to a struct?

I'm using IDAPython, but this should be applicable to IDC as well. Docs are at http://www.hex-rays.com/products/ida/support/idapython_docs/ My goal is to programatticly create two structs and a ...
0
votes
2answers
172 views

Automatically marking unexplored areas as code in IDA

I have a binary file that I am disassembling in IDA. Because IDA can't find every single code path, I need to manually go through and find unexplored areas in the binary and convert them to code by ...
3
votes
1answer
307 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.
0
votes
1answer
170 views

IDA python script, wrong number of argument for over loaded function ERROR

I have a simple python script that i wrote for IDA, but i'am can't figure out what am i doing wrong. file = open("c:\\example.txt", "r") for line in file: if line == "": pass else: ...
0
votes
1answer
185 views

IDA Pro variable declaration

I'm quite new to x86 assembly and reverse engineering and have a question about this piece of code I obtained through IDA: ; LRESULT __stdcall WndProc(HWND, UINT, WPARAM, LPARAM, UINT_PTR, DWORD_PTR) ...
0
votes
1answer
131 views

Finding functions address on the fly

My goal is to hook C functions with no symbol in stripped binaries on ARM platform. As the addresses of these functions may changed (ie. with an update of the binary), I want my interposing dynamic ...
2
votes
0answers
89 views

threading with idapython

I am writing a plugin for IDA by idapython. When I try to use threading, the IDA program fails. For example, when I try to run the code: import thread def run(): print "start thread" print ...
1
vote
1answer
311 views

IDA Pro Windbg Commands do not work

first things first: It was working when I used it last time (which is about more than a month ago). The Problem is, that no command which is from an extension is working, it seems like no extension ...
0
votes
1answer
228 views

Bulk rename functions in IDA Pro

I have a list of tenthousands of {Address} - {Function Name} pairs I dumped with a tool I wrote. Now I want to rename all functions so for example sub_123456 becomes "FooBar", because the list says ...
1
vote
1answer
126 views

Hide a message box via assembly

One really old program of mine has a message box of an error which keeps being displayed and I need to get rid of it. I've lost the source so I'm using assembly now: The section with the assembly and ...

1 2 3