Page 1 of 1

Decompilateur

Posted: Sun Sep 13, 2009 1:57 am
by mike24510
Hi

I search a decompilateur for decompile the .exe in c/c++ language. thx

Ps: I also serch a liens for learn how to crack software ?

Posted: Sun Sep 13, 2009 4:50 am
by sabretooth
A few good tools:

windasm
ollydbg
SoftIce

a google search will lead you to them.

The best online cracking tutorials I know of are here:
http://www.woodmann.com/krobar/

Good luck.

Posted: Sun Sep 13, 2009 5:28 am
by Zaffron
O_O have you turned to the dark side sabre

Posted: Sun Sep 13, 2009 12:07 pm
by mike24510
thanks a lot sabre for your answer bye

Posted: Sun Sep 13, 2009 12:21 pm
by mike24510
I have tried the decompilateur but they decompile the app in hexa and no in c/c++ ?

Re: Decompilateur

Posted: Mon Sep 14, 2009 5:41 am
by Paulencio
mike24510 wrote:Hi
I search a decompilateur for decompile the .exe in c/c++ language. thx
Ps: I also serch a liens for learn how to crack software ?
It is impossible :-)


p.s. Всем привет! есть кто из Раши? (Russia)

Posted: Mon Sep 14, 2009 10:11 am
by kyu
from my reading softice is the most common debugger for hacking....to write c or c++ programming i'm just know about borland and Visual Basic...can you explain the differences between these 3 software...

Posted: Mon Sep 14, 2009 10:38 am
by SinistraD
kyu wrote:from my reading softice is the most common debugger for hacking....to write c or c++ programming i'm just know about borland and Visual Basic...can you explain the differences between these 3 software...
You mentioned 4 of them (C and C++ are not the same, but C is part of C++). C, C++ and Visual Basic are not softwares, those are programming languages, Borland is a software company where Borland Pascal and Borland C was developed. Those are programming IDE's.

The difference between Pascal and C is huge, as well as the difference between Basic and C++. The most akin C based language to Basic is C#, but only if we look at the logic, the syntax is way too different.

B-Torrent-emule??

Posted: Tue Sep 15, 2009 11:56 am
by Nick-Aotmzgin
use emule b-torrent to reach and Gain Hacked softwares hijacks Key generators and crackes.
But i dont recommendeing doing so without anti virus software.

Posted: Fri Sep 18, 2009 3:33 pm
by mike24510
Thx for your answer i'have just a question:

Witch decompilateur use the hacker for decompile windows. I don't want decompile windows ^^ is very dificult !! but i want a decompilateur for decompile a software in source code and not an exeditor and changed them for training me in programmation.

Posted: Sat Sep 19, 2009 6:40 pm
by plope0726
mike24510 wrote:Thx for your answer i'have just a question:

Witch decompilateur use the hacker for decompile windows. I don't want decompile windows ^^ is very dificult !! but i want a decompilateur for decompile a software in source code and not an exeditor and changed them for training me in programmation.
There is no such thing as a DECOMPILER that will give you source code. It's impossible since when the program is compiled it becomes nothing but 1's and 0's (Binary Instructions). The "hex" you are seeing are representation of these binary instructions since all those 1's and 0's would be a) hard to read and b) take up a lot of space. You use this information to see what the program is doing and how it works. If you already know what language it is written in than you can put together the source code based on what the program is doing. Now if you want to learn to decipher what your are looking, a good book for that is Hacking, The Art of Exploitation. The first chapter is all about programming from the bottom up. It's hands on and full of example to play with.

If your just interested in reviewing source code to see how stuff is done, you should go to sourceforge.net and you can download tons of open source software in which the source code is freely provided.