Results 1 to 5 of 5

Thread: what are decompilers ???

  1. #1
    Senior Member
    Join Date
    Sep 2001
    Posts
    535

    Question what are decompilers ???

    hello friends good day to all ...
    i just wanted to know what are decompilers ?? the tool with which
    we can generate source code of an .exe file.
    are they availiable .. if yes then where can i download them.
    pls help me..

    intruder
    A laptop, internet connection and beer.

  2. #2
    AO Curmudgeon rcgreen's Avatar
    Join Date
    Nov 2001
    Posts
    2,716
    Just check Google. There are lots of results when
    you look for the word "decompilers".
    You will probably find that they aren't really
    all that capable, atleast if you are expecting
    good complete source code.

    Most will help you unassemble short sections of
    code into assembly language, but it takes skill.
    I came in to the world with nothing. I still have most of it.

  3. #3
    Senior Member
    Join Date
    Oct 2001
    Location
    Helsinki, Finland
    Posts
    570
    intruder, by that post one wouldn't see you're a senior member... Seniors and Addicts are always telling n00bs to 'Google' such things before they ask...

    Visual Basic decompilers actually reveal the full source code, that might be because they use the external libraries (vbrun###.dll) which contain... something important. However the code can be encrypted so that it can't be decompiled.

    Edit/Add: Link to Google search: http://www.google.com/search?hl=en&i...8&q=decompiler
    Q: Why do computer scientists confuse Christmas and Halloween?
    A: Because Oct 31 = Dec 25

  4. #4
    Junior Member
    Join Date
    Nov 2001
    Posts
    12
    Here is a link to the best free java decompiler ive been able to find http://njcv.htmlplanet.com/
    I dont read these.

  5. #5
    Senior Member
    Join Date
    Nov 2001
    Posts
    472
    If you're looking for a decent c/c++ decompiler, I have to dissapoint you. They don't exist. Because of the complexity in the language decompilers are impossible to make. Although you might find some that decompile very basic examples (like Hello World), they wont work on more complex programs.

    For Java & Visual Basic however there are quite a few good working ones (especially for Java). The ones I've found for VB is only for v. 4.0. Perhaps someone have come up with a newer one?

    Since you want to decompile an .exe file, it's likely that you're dealing with a c/c++ program. To actually see what a c/c++ program does, you'll need a disassembler. You wont get the actual code, but you'll see the machine instructions. (And strings, integers and the lot). If you're really good you may understand what happens and even make changes to the file. It's what warez people do to break copy protection and **** like that.
    ---
    proactive

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •