Reverse engineering is the process of discovering the technological principles of a human made device, object or system through analysis of its structure, function and operation.
98
votes
8answers
66k views
decompiling DEX into Java sourcecode
Are there any tools or recipes for turning Android DEX (VM bytecode) files into corresponding Java sourcecode?
93
votes
33answers
12k views
Protect .NET code from reverse engineering?
Obfuscation is one way, but it can't protect from breaking the piracy protection security of the application. How to make sure that the application is not tampered with, and how to make sure that the ...
77
votes
11answers
19k views
Google's Imageless Buttons
There have been a few articles recently about Google's new imageless buttons:
http://stopdesign.com/archive/2009/02/04/recreating-the-button.html
http://stopdesign.com/eg/buttons/3.0/code.html
...
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 ...
49
votes
7answers
59k views
How do I decompile a .NET EXE into readable C# source code?
I wrote a C# application for a client a couple of years ago, but I no longer have the source code. All I have is the EXE that I deployed on the client's PC. Is there a way I can generate C# source ...
40
votes
16answers
16k views
How do you determine what technology a website is built on?
Quite often I come across a nice looking or functional website, and wonder what technology was used to create it. What techniques are available to figure out what a
particular website was built with?
...
33
votes
13answers
56k views
List of all index & index columns in SQL Server DB
How do I get a list of all index & index columns in SQL Server 2005+? The closest I could get is:
select s.name, t.name, i.name, c.name
from sys.tables t
inner join sys.schemas s on t.schema_id ...
33
votes
13answers
6k views
Reverse engineering war stories [closed]
Sometimes you don't have the source code and need to reverse engineer a program or a black box. Any fun war stories?
Here's one of mine:
Some years ago I needed to rewrite a device driver for which ...
28
votes
1answer
670 views
“xor eax, ebp” being used
I just tried compiling a couple of C++ snippets on VS2010 and analyzed the executables on IDA Pro. Something I noticed is that there most of them have something like the following at the start(shortly ...
24
votes
1answer
19k views
Tool to reverse Javascript minify? [closed]
Possible Duplicate:
Online Tool to Unminify / Decompress JavaScript
Online javascript minify tools basically strip out comments and whitespace.
Is there a tool that can reverse this? Taking ...
23
votes
2answers
23k views
What's a good C decompiler?
I am searching for a decompiler for a C program. The binary is a 32-bit Linux executable. Objdump works fine, so basically I am searching for something which attempts to reconstruct the C source from ...
22
votes
8answers
3k views
What is your favourite anti-debugging trick?
At my previous employer we used a third party component which basically was just a DLL and a header file. That particular module handled printing in Win32. However, the company that made the component ...
21
votes
7answers
1k views
How do i prevent my code from being stolen?
What happens exactly when I launch a .NET exe? I know that C# is compiled to IL code and I think the generated exe file just a launcher that starts the runtime and passes the IL code to it. But how? ...
21
votes
14answers
1k views
Can it be morally defensible to release a program which games an MMORPG? [closed]
I have written presumably some of the first code to modify the memory of a popular new MMORPG in such a way as to create a macro framework, allowing for advanced automated reactions, skill/level gain, ...
20
votes
2answers
525 views
Deconstructing Pokémon glitches?
(I apologize if this is the wrong place to ask this. I think it's definitely programming related, though if this belongs on some other site please let me know)
I grew up playing Pokémon Red and ...
19
votes
15answers
5k views
Reversing an MD5 Hash
I have passwords stored in a database using md5, and was wondering if there was a way to reverse the hash to email the user's password to him in case they forget it.
If that's not the most ...
19
votes
12answers
3k views
Good techniques for understanding someone else's code
What techniques can anyone suggest for understanding a new piece of code?
Here are some of the things I find sort-of work:
1) Print the code out, on a colour printer, with syntax highlighting, ...
17
votes
5answers
33k views
Is there a C++ decompiler?
I have a program in which I've lost the C++ source code. Are there any good C++ decompilers out there?
I've already ran across Boomerang.
15
votes
4answers
3k views
How can I protect MySQL username and password from decompiling?
sadly Java Classes can be decompiled pretty well, how can I protect my database if I have to use the login data in the code?
14
votes
4answers
307 views
How do these javascript obfuscators generate actual working code?
There's this one and this one and they both generate completely unreadable code, one being more adorable than the other.
Now, I'm no expert in Javascript, but I fail to see how
゚ω゚ノ= /`m´)ノ ~┻━┻ ...
14
votes
3answers
247 views
Where does the limitation of 10^15 in D.J. Bernstein's 'primegen' program come from?
At http://cr.yp.to/primegen.html you can find sources of program that uses Atkin's sieve to generate primes. As the author says that it may take few months to answer an e-mail sent to him (I ...
14
votes
11answers
860 views
Is There a Way to Tell What Language Was Used for a Program?
I have a desktop program I downloaded and installed. It runs from an .exe file.
Is there some way from the .exe file to tell what programming language was used to write the program?
Are there any ...
13
votes
2answers
132 views
Good software engineering vs. Security
The Security and Design guidelines go to great length outlining various methods to make it more difficult for an attacker to compromise in-app billing implementation.
Especially noted is how easy it ...
13
votes
5answers
3k views
Compare compiled .NET assemblies?
Are there any good programs out there to compare to compile .NET assemblies?
For example I have HelloWorld.dll (1.0.0.0) and HelloWorld.dll (2.0.0.0), and I want to compare differences how can I do ...
13
votes
8answers
2k views
Where is Reverse Engineering used?
I ask myself where reverse engineering is used. I'm interested at learning it. But I don't know if I can/should put it on my CV.
I don't want my new chief to think I am an evil Hacker or something. ...
13
votes
6answers
6k views
Tools to help reverse engineer binary file formats
What tools are available to aid in decoding unknown binary data formats?
I know Hex Workshop and 010 Editor both support structures. These are okay to a limited extent for a known fixed format but ...
12
votes
8answers
3k views
Is it really Impossible to Protect Android apps from Reverse Engineering?
As we know, Android apps are written in Java. In Java, no matter what you do, it is impossible to protect compiled code from decompilation or reverse-engineering, as the following thread suggests:
...
12
votes
6answers
857 views
Considering getting into reverse engineering/disassembly
Assuming a decent understanding of assembly on common CPU architectures (eg: x86), how can one explore a potential path (career, fun and profit, etc) into the field of reverse engineering? There is so ...
12
votes
4answers
2k views
Call graph of the whole application
Is there a non-toyish tool that can create a call graph of the whole application? I don't mean just getting a picture or drawing call graph by means of pointing method-by-method.
I need a call graph, ...
12
votes
16answers
2k views
Is reverse engineering evil?
Lately I've been pondering on how a specific beloved old game actually works.
I had some mild progress, but then a friend pointed out that if I really loved the game and appreciate it, I wouldn't try ...
11
votes
2answers
915 views
Reverse Engineering an Apple Kext - Reconstructing the Class
Greetings!
I am currently attempting to extend the functionality of the Magic Mouse. To do this, I am hoping to write a kext that intercepts events from the multitouch driver, ...
11
votes
7answers
4k views
How Can I Reverse Engineer a Network Protocol (Metatrader 4)?
I need to reverse engineer the Metatrader 4 network protocol. MT4 Server doesn't have an API and I have found zero documentation about its protocol.
Any ideas about where I can start?
I never done ...
11
votes
8answers
2k views
how are serial generators / cracks developed?
I mean, I always was wondered about how the hell somebody can develop algorithms to break/cheat the constraints of legal use in many shareware programs out there.
Just for curiosity.
10
votes
14answers
987 views
Making commercial Java software (DRM)
I intend to make some software to be sold over internet. I've only created open-source before, so I have really no idea of how to protect it from being cracked and distributed as warez. Bearing in ...
10
votes
8answers
3k views
Getting started reverse-engineering OS X?
What is a good place to learn reverse engineering, specifically as it applies to Mac OS X? Two apps that I admire in terms of this subject:
Hyperspaces – http://thecocoabots.com/hyperspaces/
and
...
10
votes
5answers
2k views
Deciphering MMORPG Protocol Encoding
I plan on writing an automated bot for a game.
The tricky part is figuring out how they encoded their protocol... To make the bot run around is easy, simply make the character run and record what it ...
9
votes
2answers
161 views
What Python accessible tools can you use to generate XSD from an XML document?
I'm looking for a tool that will play nicely with Python.
Except for my Python requirement, my question is the same as this one:
"I am looking for a tool which will take an XML instance document ...
9
votes
12answers
12k views
convert ASM to C (not reverse engineer)
I googled and I see a suprising amount of flippant responses basically laughing at the asker for asking such a question.
Microchip provides some source code for free (I don't want to post it here in ...
9
votes
2answers
538 views
Reverse Engineering old paint programs
I've got a couple of really old MSDos based paint programs. They work on palette indexed image buffers. They have a number of spectacular shape drawing tools, brushes and effects that simply do not ...
9
votes
10answers
818 views
What are the best ways to understand an unfamiliar database?
What kind of approaches and techniques can you employ to become familiar with an existing database if you are tasked with supporting and/or modifying it? How can you easily and effectively ramp up ...
9
votes
5answers
527 views
How to reverse engineer undocumented legacy application?
Once I was assigned to a project which was about adding couple new features to the existing Java based web application. Because it was a matter of just couple simple features there was no chance for ...
9
votes
7answers
2k views
Is it legal to reverse engineer binary file formats [closed]
Is it legal to add support for a 3rd party file format in my application by reverse engineer a unencrypted binary file format from another application, and reading the contents?
8
votes
3answers
313 views
Reverse Engineering a Perl script based on a core dump
A friend's server (yes, really. Not mine.) was broken into and we discovered a perl binary running some bot code. We could not find the script itself (probably eval'ed as received over the network), ...
8
votes
8answers
574 views
How to get the structure of software if there is no document?
I am reading a project code, however there is nothing but some .cpp and .h source files.
How can I get started and get the structure of the software?
8
votes
5answers
2k views
Best way to inject functionality into a binary
What would be the best way of inserting functionality into a binary application (3d party, closed source).
The target application is on OSX and seems to have been compiled using gcc 3+. I can see the ...
8
votes
8answers
2k views
Stored procedures reverse engineering
We're having problem with a huge number of legacy stored procedures at work. Do you guys recommend any tool the can help better understand those procedures? Some kind of reverse engineering that ...
7
votes
4answers
161 views
Assembly-level function fingerprint
I would like to determine, whether two functions in two executables were compiled from the same (C) source code, and would like to do so even if they were compiled by different compiler versions or ...
7
votes
1answer
143 views
Is it possible do create Java classes from JavaDoc?
Here is the problem: Currently my team work for a vendor, that provided us a huge JavaDoc spec from their library, but did not provide the .jar file with stubs or implementation.
We already talked to ...
7
votes
5answers
340 views
How does a debug build make reverse engineering easy?
Some answer here stated that debug info would make it easier to reverse engineer the software. When I use Visual C++ and distribute an executable with debugging information but without other files ...
7
votes
1answer
268 views
Reverse Engineering the DOM, Javascript events & “what's going on”?
I'm trying to figure out what's going on in the javascript of Google's live page preview.
Why aren't the links I'm adding to the DOM with Javascript clickable? (for a bit more context)
...