Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

57
votes
10answers
3k 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 ...
2
votes
4answers
466 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 ...
2
votes
1answer
65 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 ...
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
0answers
75 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
4answers
161 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 ...
1
vote
1answer
318 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. ...
1
vote
2answers
168 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 ...
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
2answers
29 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
39 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
31 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
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
1answer
121 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
1answer
150 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
162 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* ...
0
votes
2answers
1k 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
votes
0answers
31 views

Wich Processor type I must choose to use IDA pro on iOS app? [closed]

Wich Processor type I must choose to use IDA pro on iOS app? If I select arm when I try to patch my app and send it to my phone it crash...! I changed only one string... So I think that what is wrong ...