Tagged Questions

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. It supports a variety of executable formats for different processors and operating systems. It also can be used as a ...

learn more… | top users | synonyms

3
votes
1answer
121 views

Offset for objective C selectors in ARM assembly (IOS)

I'm trying to understand how IOS objective-C message calls are implemented in ARM assembly language. Looking at IDA disassembly output I can see the class and selector references pushed into registers ...
3
votes
5answers
183 views

Confusing function

So, while using IDA to disassemble a dll, I came across this class function: mov eax, [ecx+4] mov eax, [eax] retn I know ecx means this and eax is the return value, but I fail to understand what it ...
3
votes
6answers
635 views

jnz after xor?

After using IDA Pro to disassemble a x86 dll, I found this code (Comments added by me in pusedo-c code. I hope they're correct): test ebx, ebx ; if (ebx == false) jz short loc_6385A34B ...
2
votes
1answer
187 views

How do you extract values out of ARM ASM bits?

In IDA Pro I see the ARM ASM listed below. What bits is IDA using to get 7200? A3 F5 E1 53 SUB.W R3, R3 #7200 For convenience the values are binary are as follows 7200 = 0x1c20 = 0001 1100 0010 ...
2
votes
1answer
381 views

symbols mismatch, ida/windbg

Recently I was trying to learn more about Windows Kernel. I downloaded right symbols for my sys(win7 x64 free). I run IDA and open ntoskrnl.exe. IDA asked whether to attach pdb file. But most of ...
2
votes
2answers
2k views

IDA Pro and editing executables

This is kind of an unorthodox question. I'm kinda new to using IDA Pro. Is there a way to edit the assembly code and then have IDA save the result as an executable? Is there some kind of plugin ...
1
vote
1answer
39 views

Changes to the program. IDA disassembler

There is such part of a code. /* bla bla bla */ .text:0040C777 align 4 .text:0040C778 .text:0040C778 loc_40C778: ; CODE XREF: sub_40C424+289j ...
1
vote
2answers
88 views

Reverse Engineer Simple Application with IDA Pro 5

This application is the first application challenge on the site hackthissite.org. The idea is to find the serial. When you enter the serial number and press ok, it pops up a message box with a ...
1
vote
2answers
77 views

MIPS disassembling: lui followed by lbu

I'm disassembling a firmware using IDA (mipsb processor) I'm seeing this a lot in this IDA dissasm. lui $t9 , 0x802f ...does nothing with $t9 ...and doesn't jump.. lbu $t9, ...
1
vote
0answers
173 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 ...
1
vote
2answers
464 views

Is it possible in IDA Pro to make a struct field offset to vtable which is defined in .data segment?

Here is what I want to achieve. I identified a class which I defined as a struct to store class data. One of the methods of the class uses class-field as if it's pointer to vtable. int __thiscall ...
1
vote
1answer
364 views

MFC .dll, CString problems, IDA c++ pseudocode, how close is it?

I have some IDA pseudo c++ code and I was wondering how close it was... The lines: CHAR Filename; // [sp+26Ch] [bp-110h]@1 char v31; // [sp+36Ch] [bp-10h]@1 int v32; // [sp+378h] [bp-4h]@1 ...
1
vote
2answers
391 views

IDA pro: apply signatures on unknown_libname_x functions?

When applying signatures IDA pro will name some functions unknown_libname_x. These functions reflect a library function that IDA doesn't have enough details on. Often, however, other signatures may ...
1
vote
1answer
179 views

address in push instruction changing after modifying exe in hex

running on windows 7, 32bit home pro I created a very simple few line app in visual studio 2008 , compiled and linked with standard libraries in release mode into executable test.exe. The code in c ...
1
vote
1answer
402 views

Dissasembling simple ARM instructions?

I've been messing around with IDA Pro and trying to disassemble my own products just for the sake of it. I've noticed a couple of things I don't understand because my assembly language knowledge is ...
1
vote
2answers
118 views

In IDA Pro, is there a way to flag a function?

I found a particularly important function using IDA Pro. However, the source is very large and I'm sure I'll lose track of it soon. Is there a way to "flag" the function as important, color code it, ...
1
vote
1answer
1k views

How can I make EXE file of the modified copy?

I made my changes using IDA but I don't know how to make the new file exe again
0
votes
0answers
10 views

Ida Pro Changing default value assigned to a specific variable

This is the method that set my variable to value 0 Is it possible to patch it to assign it the default value 1 when is is called? SetVariable Method LDR R3, ...
0
votes
1answer
15 views

IDA Pro: Export identified array to c/c++

I have a couple of global structs in a binary which are basically tables (arrays) of some values - i wish to export these to c/c++ format arrays but i did not found any way. Is this possible in any ...
0
votes
1answer
26 views

ARM (thumb) firmware mod…how to turn few lines of ASM to code to make a mod

Have firmware disassmbled with IDA (ARM920 Core).. most is Thumb mode....some is ARM mode Want to make some mods, in ASM. What is the easiest way to turn few lines of ASM (well few dozen) into ...
0
votes
2answers
41 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
0answers
72 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 ...
0
votes
0answers
19 views

Is there a way to export function names from IDA PRO

I need a way to copy all the function names of a binary out of IDA PRO. I there an fuction export option or something? Thanks
0
votes
1answer
87 views

Hooking usercall with inline asm

I disassembled an executable file with IDA pro. My goal is to hook the __usercall function. I know i need to wrap the __usercall with inine asm in my C++ code since i can't typedef thefunction. But ...
0
votes
1answer
91 views

Patching with ida pro

I have a program like this #include <stdio.h> int somma(x,y){ return x+y; } int diff(x,y){ return x-y; } int main(){ int x=5; int y=4; printf("la somma e' %d", somma(x,y)); ...
0
votes
2answers
65 views

Finding the 'function' that last altered a place in a register?

sorry I'm a complete noob when it comes to ASM and IDA. My programming experience is mainly as a Java Developer and I feel somewhat out of my comfort zone. I'm doing a little reverse engineering and ...
0
votes
1answer
82 views

Modifying and Saving in IDA

Is it possible to add code to a current binary in IDA and then save then to recompile the binary? I've looked over Google, but no suggestions as to whether IDA can do this. If not, whats the best to ...
0
votes
1answer
89 views

snapshot of memory for process on mac?

I want to take a snapshot of memory of process in action on mac. I have no idea how to do it. I have IDA-PRO for mac with me. Can it be used? How? Can anyone suggest me a way to do this? (some ...
0
votes
1answer
134 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 ...
0
votes
0answers
141 views

What are the best Ida Pro options such as compiler,typelib, signatures for Delphi 7 executables?

For compiler options I was thinking Compiler Delphi, and Default calling convention Fastcall but I'm not sure if Delphi 7 uses mainly Borland Fastcall or Cdecl, all I noticed is register loading ...
0
votes
1answer
112 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
1k views

IDA pro asm instructions change

I just want to know how I can change asm instructions in the IDA-view A: How to edit instructions(for instance: jnz to jmp)? How to insert new instructions(call func1, call func2 inserted to ...
0
votes
2answers
241 views

What is PPC and what does it mean? [closed]

So everyone keeps talking about PPC and I don't know what it is. I know that there are multiple terms for PPC, but I know this one is related to a program called Ida or something like that. So please, ...
0
votes
1answer
340 views

IDA pro Reverse Engineering — String Condition

I'm using IDA pro to reverse a trojan with a packer, and I saw that the trojan unpack some files, (two files actually) by depacking my trojan with winrar. Now I would like to see what's really going ...
0
votes
1answer
366 views

IDA pro 'this' keyword

I am wondering what the exact meaning of the 'this' keyword is in the IDA pro pseudo c++ code. Lets say that I have a function call: v2 = sub_100010B3((int)&v12, "QtGui4.dll"); Which call this ...
0
votes
1answer
244 views

IDA Pro, QT Nokia Library, dll call, what is it actually doing?

I have reversed a dll using IDA Pro. Looking at the pseudocode generated by IDA i am interested in a set of calls into the QT library, is it trying to find the location of functions so that it can ...
0
votes
1answer
698 views

Windbg + IDA: calculate an address in a module

I'm debugging remotely a windows XP machine. One of my drivers is loaded at address 0xb2c4c000 up to 0xb2cb9680. Now when I open my driver in IDA, the offset I want to set a breakpoint on is at ...
0
votes
1answer
555 views

Patching an EXE using IDA

Say there is a buggy program that contains a sprintf() and i want to change it to a snprintf so it doesn't have a buffer overflow.. how do I do that in IDA??