From Collaborative RCE Tool Library
Decompilers
Tool name: | jClazzME |
| ||
---|---|---|---|---|
Author: | Annimon | |||
Website: | http://annimon.wen.ru | |||
Current version: | 1.2.3 | |||
Last updated: | June 8, 2009 | |||
Direct D/L link: | bin_jClazzME_2010-6-1_14.44__jClazzME.jar | |||
License type: | Unknown - Open Source | |||
Description: | jClazzME is a tool for decompiling Java class file. jClazzME is a J2ME application . Therefore it would work for any mobile phone that support J2ME with JSR-75. jClazzME is also a Java disassembler. | |||
Also listed in: | Java Decompilers, Mobile Platform Decompilers, Mobile Platform Tools, Symbian Tools | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | P32DASM |
| ||
---|---|---|---|---|
Author: | DARKER | |||
Website: | http://progress-tools.x10.mx/p32dasm.html | |||
Current version: | 2.8 | |||
Last updated: | May 24, 2011 | |||
Direct D/L link: | http://progress-tools.x10.mx/p32dasm.zip | |||
License type: | Free | |||
Description: | P32Dasm is a Visual Basic 5.0/6.0 PCode + Native code Decompiler. It can generate String, Numbers, Objects, Import and Export function listing. There is also Jump calculator. For VB Native code executables are generated only MSVBVM, External calls and string references. Usefull for setting BPX, you don't need search in debugger where start some Command Button event. You can generate .map files, which you can import to DataRescue IDA (LoadMap plugin) or to Olly Debugger (MapConv plugin). | |||
Also listed in: | Disassemblers, Visual Basic Decompilers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | Reflector for .NET |
| ||
---|---|---|---|---|
Author: | Lutz Roeder (current owner Red Gate Software) | |||
Website: | http://www.reflector.net/ | |||
Current version: | 7.7 | |||
Last updated: | July 18, 2009 | |||
Direct D/L link: | http://shop.reflector.net/download | |||
License type: | Free until 6.8.2.5 | |||
Description: | From website: "Reflector is a very powerful class browser, explorer, analyzer and documentation viewer for .NET. Reflector allows to easily view, navigate, search, decompile and analyze .NET assemblies in C#, Visual Basic and IL." This is one of the most powerful .NET decompilers that you can't buy - just download :) Many of the popular commercial tools achieving the same goal "suddenly" got a boost when this masterpiece of work saw a daylights (and besides that those are commercial, still have hard time with obfuscators). Just give it a try, it will last literally five minutes - load some well known assembly of yours, choose target .NET language (!) and let'em work. Then compare it with the original. You'll surely not forget this one. | |||
Also listed in: | .NET Decompilers, .NET Disassemblers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | DeDe |
| ||
---|---|---|---|---|
Author: | DaFixer | |||
Website: | http://dafixer.cjb.net | |||
Current version: | 3.50.04 (build 1635) | |||
Last updated: | June 25, 2006 | |||
Direct D/L link: | Locally archived copy | |||
License type: | Free / Open Source | |||
Description: | DeDe is a very fast application that allows you to analyze executables compiled with Delphi 2,3,4,5,6,7, C++ Builder, Kylix and Kol, and gives you the following: · All .dfm files of the target. You will be able to open and edit them with Delphi. · All published methods in well commented ASM code with references to strings, imported function calls, classes methods calls, components in the unit, Try-Except and Try-Finally blocks. (By default DeDe retrieves only the published methods sources, but you may also process another procedure in a executable if you know the RVA offset using the Tools->Disassemble Proc menu.) · A lot of additional information the files. · You can create a Delphi project folder with all dfm, pas, dpr files. Note: pas files contains the mentioned above well commented ASM code. They can not be recompiled ! You can also: · View the PE Header of all PE Files and change/edit the sections flags. · Use the opcode-to-asm tool for translating intel opcode to assembler. · Use RVA-to-PhysOffset tool for fast converting physical and RVA addresses. · Use the DCU Dumper (view dcu2int.txt for more details) to retrieve near to pascal code of your DCU files. · Use BPL(DPL) Dumper to see BPL exports and create symbol files to use with DeDe disassembler. · Disassemble a target EXE directly from memory in case of a packed exe. ------------ NOTE: The original site seems to be gone (or at least DeDe seems to be gone from it). The locally archived copy here in this CRCETL entry only has the 3.10 source (it has the most recent(?) 3.50.04 build 1635 binary though). If you have access to any later source code version than 3.10, please upload it here. | |||
Also listed in: | Delphi Decompilers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | Boomerang |
| ||
---|---|---|---|---|
Author: | The Boomerang Decompiler Project | |||
Website: | http://boomerang.sourceforge.net/ | |||
Current version: | 0.3.1 | |||
Last updated: | 2006 | |||
Direct D/L link: | N/A | |||
License type: | Free / Open Source | |||
Description: | A general, open source, retargetable decompiler of machine code programs. This project is an attempt to develop a real decompiler for machine code programs through the open source community. A decompiler takes as input an executable file, and attempts to create a high level, compilable, possibly even maintainable source file that does the same thing. It is therefore the opposite of a compiler, which takes a source file and makes an executable. However, a general decompiler does not attempt to reverse every action of the decompiler, rather it transforms the input program repeatedly until the result is high level source code. It therefore won't recreate the original source file, probably nothing like it. It does not matter if the executable file has symbols or not, or was compiled from any particular language. (However, declarative languages like ML are not considered.) The intent is to create a retargetable decompiler (i.e. one that can decompile different types of machine code files with modest effort, e.g. X86-windows, sparc-solaris, etc). It was also intended to be highly modular, so that different parts of the decompiler can be replaced with experimental modules. It was intended to eventually become interactive, a la IDA Pro, because some things (not just variable names and comments, though these are obviously very important) require expert intervention. Whether the interactivity belongs in the decompiler or in a separate tool remains unclear. By transforming the semantics of individual instructions, and using powerful techniques such as Static Single Assignment dataflow analysis, Boomerang should be (largely) independent of the exact behaviour of the compiler that happened to be used. Optimisation should not affect the results. Hence, the goal is a general decompiler. | |||
Also listed in: | (Not listed in any other category) | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | Coddec |
| ||
---|---|---|---|---|
Author: | Dr Bolsen | |||
Website: | http://drbolsen.wordpress.com/2008/07/14/coddec-released | |||
Current version: | ||||
Last updated: | April 7, 2009 | |||
Direct D/L link: | Locally archived copy | |||
License type: | Free / Open Source | |||
Description: | Decompiler for Blackberry executables (COD files), includes source. | |||
Also listed in: | BlackBerry Tools, Mobile Platform Decompilers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | DE Decompiler |
| ||
---|---|---|---|---|
Author: | GPcH Soft | |||
Website: | http://www.de-decompiler.com | |||
Current version: | 2.0 (updated) | |||
Last updated: | July 18, 2008 | |||
Direct D/L link: | Locally archived copy | |||
License type: | Commercial (with demo) | |||
Description: | DE Decompiler is the unique solution for decompiling the Delphi generated programs (EXE, DLL, OCX). As you know the Delphi programs is the native win32 executable files. DE Decompiler restores most parts of the compiled code and helps you to recover most parts of the lost sources. It contans the powerful disassembler which supports Pentium Pro commands including MMX and SSE extensions. Also it has a useful smart assembler code emulation engine. The build-in disassembler allows you to disassemble a lots of functions and represents it in semi-decompiled mode. DE Decompiler has a wonderful code analyzer which makes your work easy and fast. In addition to all it can search for all the API function's calls and the string references in the disassembled code and comment them out for analyzed strings. If you lost your source codes - DE Decompiler save your time and helps you to restore it. In general, DE Decompiler is the ideal tool for analyzing programs and it is perfect if you lose your source code and need to partially restore the project. | |||
Also listed in: | Delphi Decompilers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | Desquirr - Decompiler Plugin for IDA Pro |
| ||
---|---|---|---|---|
Author: | David Eriksson | |||
Website: | http://desquirr.sourceforge.net/desquirr/ | |||
Current version: | 20070130 (desquirr-20070130-bin-ida_v5_0.zip) | |||
Last updated: | November 13, 2003 | |||
Direct D/L link: | Locally archived copy | |||
License type: | Free / Open Source | |||
Description: | Desquirr is a decompiler plugin for IDA Pro. Desquirr currently consists of a little more than 5000 lines of C++ code, not counting empty lines or lines beginning with comments Read the Master Thesis at http://desquirr.sourceforge.net/desquirr/desquirr_master_thesis.pdf | |||
Also listed in: | IDA Extensions | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | DoDi's Visual Basic 3/4 Decompiler |
| ||
---|---|---|---|---|
Author: | Dr. H.-P. Diettrich | |||
Website: | http://vbdis4.angelfire.com/ | |||
Current version: | 3.67e *reloaded* | |||
Last updated: | December 1, 2008 | |||
Direct D/L link: | http://vbdis4.angelfire.com/VBDIS3.67e_Reloaded_Rev3_DoDi_s_VB3Decompiler.7z | |||
License type: | Abandonware | |||
Description: | Attention the original program is anno 1997. However it's the best VB3 decompiler out there. Decompiled & recompile with VB6. ^- So it will also run on systems new than windows XP that don't have any win3.11 16-bit support(or emulator) on board Features: * beside the sourcecode * some bugfixed and decompiling improvement * support for decompiling 'VBGuard-protected' VB3-Apps | |||
Also listed in: | Visual Basic Decompilers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | dotPeek |
| ||
---|---|---|---|---|
Author: | Jetbrains | |||
Website: | http://www.jetbrains.com/decompiler/ | |||
Current version: | 1.4 | |||
Last updated: | April 8, 2015 | |||
Direct D/L link: | http://download.jetbrains.com/resharper/dotPeek32_1.4.exe | |||
License type: | Free | |||
Description: | A free replacement of Reflector - Decompiling .NET 1.0-4.5 assemblies to C# - Support for .dll, .exe, .zip, .vsix, .nupkg, and .winmd files - Quick jump to a type, assembly, symbol, or type member - Effortless navigation to symbol declarations, implementations, derived and base symbols, and more - Accurate search for symbol usages with advanced presentation of search results - Overview of inheritance chains - Support for downloading code from source servers - Syntax highlighting - Complete keyboard support | |||
Also listed in: | .NET Decompilers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | ExeToC Decompiler |
| ||
---|---|---|---|---|
Author: | bookaa | |||
Website: | http://sourceforge.net/projects/exetoc/ | |||
Current version: | ||||
Last updated: | May 23, 2005 | |||
Direct D/L link: | N/A | |||
License type: | Free / Open Source | |||
Description: | Decompile win32 programs and DLLs to C++ step by step. Allows some interactivity. Main functions already work: * Supports if/else/for/do/while/break/switch case/continue * Supports API * Supports C++ head file load * Supports standard library function recognize. | |||
Also listed in: | (Not listed in any other category) | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | Hex-Rays |
| ||
---|---|---|---|---|
Author: | Hex-Rays sprl (Ilfak Guilfanov) | |||
Website: | http://www.hex-rays.com | |||
Current version: | 1.0 | |||
Last updated: | September 17, 2007 | |||
Direct D/L link: | N/A | |||
License type: | Commercial (IDA Pro plugin) | |||
Description: | Hex-Rays is created by Ilfak Guilfanov, famous author of IDA Pro. It is a commercial IDA Pro plugin, and aims to be the best decompiler ever created. | |||
Also listed in: | IDA Extensions | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | ILSpy |
| ||
---|---|---|---|---|
Author: | David Srbecky | |||
Website: | http://wiki.sharpdevelop.net/ILSpy.ashx | |||
Current version: | 1.0.0.729 | |||
Last updated: | April 12, 2011 | |||
Direct D/L link: | http://build.sharpdevelop.net/BuildArtefacts/#ILSpy | |||
License type: | Open-source | |||
Description: | ILSpy is the open-source .NET assembly browser and decompiler. Development started after Red Gate announced that the free version of .NET Reflector would cease to exist by end of February 2011. ILSpy Features: Assembly browsing IL Disassembly Decompilation to C# Supports lambdas and 'yield return' Saving of resources Search for types/methods/properties (substring) Hyperlink-based type/method/property navigation Base/Derived types navigation Navigation history BAML to XAML decompiler Save Assembly as C# Project Find usage of field/method Extensibile via plugins (MEF) | |||
Also listed in: | .NET Decompilers, .NET Disassemblers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | InstallShield Decompiler 6.xx |
| ||
---|---|---|---|---|
Author: | NEKOSUKI | |||
Website: | http://deioncube.in/files/cw2k/isd6 | |||
Current version: | 1.00 beta 16 (cw2k's *retro-build*) | |||
Last updated: | August 1, 2011 | |||
Direct D/L link: | http://deioncube.in/files/cw2k/isd6/isd_beta16.7z | |||
License type: | Free RE-Tool | |||
Description: | Updates from Beta 15 (2001/05/06) to Beta 16 (2011/08/01) * added support for encrypted IS61(IS2011) setups (ISDGoBack.exe) * Support for new unicode Types(WSTRING, WPOINTER) * translated Japanese error messages into english (via google). [ To bad that this box don't support any formating options :( Click on website above for a nicer view. ] Target Examples Setup.inx 00000000 61 4C 75 5A 00 00 43 6F 70 79 72 69 67 68 74 20 aLuZ Copyright 00000010 28 63 29 20 31 39 39 30 2D 32 30 30 32 20 49 6E (c) 1990-2002 In 00000020 73 74 61 6C 6C 53 68 69 65 6C 64 20 53 6F 66 74 stallShield Soft 00000030 77 61 72 65 20 43 6F 72 70 2E 20 41 6C 6C 20 52 ware Corp. All R 00000040 69 67 68 74 73 20 52 65 73 65 72 76 65 64 2E 00 ights Reserved. 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Setup.dbg 00000000 6B 55 74 5A 00 6F 70 79 72 69 67 68 74 20 28 63 kUtZ opyright (c 00000010 29 20 31 39 39 30 2D 31 39 39 39 20 53 74 69 72 ) 1990-1999 Stir 00000020 6C 69 6E 67 20 54 65 63 68 6E 6F 6C 6F 67 69 65 ling Technologie 00000030 73 2C 20 4C 74 64 2E 20 41 6C 6C 20 52 69 67 68 s, Ltd. All Righ 00000040 74 73 20 52 65 73 65 72 76 65 64 2E 00 00 00 00 ts Reserved. 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Isrt.obl 00000000 70 4F 64 41 01 00 00 00 2F 00 00 00 10 00 44 65 pOdA / De 00000010 62 75 67 53 79 6D 62 6F 6C 73 2E 6F 62 73 EB 03 bugSymbols.obsë 00000020 00 00 B3 08 00 00 0E 00 41 63 74 69 76 61 74 69 ³ Activati 00000030 6F 6E 2E 6F 62 73 9E 0C 00 00 9E 4C 00 00 0A 00 on.obsž žL 00000040 41 73 73 65 72 74 2E 6F 62 73 3C 59 00 00 8D 49 Assert.obs<Y I 00000050 00 00 09 00 42 61 74 63 68 2E 6F 62 73 C9 A2 00 Batch.obsÉ¢ ISRTScriptDialogs.obs 00000000 48 4F F3 C9 76 33 2E 39 39 2E 30 30 32 00 00 00 HOóÉv3.99.002 00000010 43 6F 70 79 72 69 67 68 74 20 28 63 29 20 31 39 Copyright (c) 19 00000020 39 30 2D 32 30 30 32 20 49 6E 73 74 61 6C 6C 53 90-2002 InstallS 00000030 68 69 65 6C 64 20 53 6F 66 74 77 61 72 65 20 43 hield Software C 00000040 6F 72 70 2E 20 41 6C 6C 20 52 69 67 68 74 73 20 orp. All Rights 00000050 52 65 73 65 72 76 65 64 2E 00 00 00 00 00 00 00 Reserved. NewSetup61.inx (Encrypted) 00000000 74 C4 2C 84 E1 E5 D4 28 10 FB 00 20 3C 24 FB 4D tÄ,„áåÔ( û <$ûM | |||
Also listed in: | Installer Decompilers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | myAut2Exe |
| ||
---|---|---|---|---|
Author: | cw2k | |||
Website: | http://myaut2exe.tk/ | |||
Current version: | 2.10 | |||
Last updated: | February 2011 | |||
Direct D/L link: | http://deioncube.in/files/MyAutToExe/myAutToExe2_10_src.7z | |||
License type: | Open Source | |||
Description: | AutoIT Script Decompiler Decompiles: compiled AutoIT scripts(*.a3x and *.exe) to *.au3 and compiled AutoHotKey scripts (*.exe) to *.ahk. ... and extracts attached files. DeObfuscates: 'Jos van der Zande AutoIt3 Source Obfuscator' 'EncodeIt 2.0' and 'Chr() string encode. Last tested Versions: AutoIT : v3. 3. 5.6 AutoIT : v3. 3. 0.0 and AutoIT : v2.64. 0.0 and AutoHotKey: v1. 0.48.5 | |||
Also listed in: | Installer Decompilers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | Orca |
| ||
---|---|---|---|---|
Author: | Microsoft | |||
Website: | http://msdn2.microsoft.com/en-us/library/aa370557(VS.85).aspx | |||
Current version: | ||||
Last updated: | ||||
Direct D/L link: | http://www.microsoft.com/downloads/details.aspx?FamilyId=C2B1E300-F358-4523-B479-F53D234CDCCF&displaylang=en | |||
License type: | Proprietary | |||
Description: | Orca is a database table editor for creating and editing Windows Installer packages and merge modules. The tool provides a graphical interface for validation, highlighting the particular entries where validation errors or warnings occur. This tool is only available in the Windows SDK Components for Windows Installer Developers. It is provided as an Orca.msi file. After installing the Windows SDK Components for Windows Installer Developers, double click Orca.msi to install the Orca.exe file. | |||
Also listed in: | Installer Decompilers, Installer Extraction Tools | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | RACEVB6 |
| ||
---|---|---|---|---|
Author: | Sarge | |||
Website: | http://www.racevb6.com | |||
Current version: | 4.4 | |||
Last updated: | June 9, 2008 | |||
Direct D/L link: | http://www.racevb6.com/RaceEx6_4_4.zip | |||
License type: | Free | |||
Description: | RACEVB6 is a Visual Basic 6 P-Code analyzer. RACEVB6 can be used to investigate Visual Basic 6 programs compiled to P-Code. RACEVB6 will display not only such typical information as Project data and Form/Control GUI data, but will also make available Procedures names and offsets, their accompanying P-Code opcodes, extract any Pictures or Images contined within the program, and many other pieces of "buried" data. | |||
Also listed in: | Visual Basic Decompilers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | REDasm |
| ||
---|---|---|---|---|
Author: | Dax | |||
Website: | https://github.com/REDasmOrg/REDasm | |||
Current version: | Nightly | |||
Last updated: | ||||
Direct D/L link: | https://github.com/REDasmOrg/REDasm-Builds | |||
License type: | GPL2 | |||
Description: | REDasm is a crossplatform, interactive, multiarchitecture disassembler written in C++ with Qt5 framework. its core is light and it can be extended in order to support new instructions and file formats. In the future, Python scripting will be supported. | |||
Also listed in: | Disassemblers, Linux Disassemblers, Visual Basic Decompilers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | RecStudio |
| ||
---|---|---|---|---|
Author: | Backer Street Software | |||
Website: | http://www.backerstreet.com/rec/rec.htm | |||
Current version: | 4 | |||
Last updated: | June 2, 2014 | |||
Direct D/L link: | http://www.backerstreet.com/rec/RecStudioWin.zip | |||
License type: | Free | |||
Description: | REC Studio is an interactive decompiler. It reads a Windows, Linux, Mac OS X or raw executable file, and attempts to produce a C-like representation of the code and data used to build the executable file. It has been designed to read files produced for many different targets, and it has been compiled on several host systems. REC Studio 4 is a complete rewrite of the original REC decompiler. It uses more powerful analysis techniques such as partial Single Static Assignment (SSA), allows loading Mac OS X files and supports 32 and 64 bit binaries. | |||
Also listed in: | (Not listed in any other category) | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | Scripts for Perl Decompiling |
| ||
---|---|---|---|---|
Author: | Swine | |||
Website: | N/A | |||
Current version: | 1.0 | |||
Last updated: | April 1, 2011 | |||
Direct D/L link: | Locally archived copy | |||
License type: | Free/GPL | |||
Description: | Bash & IDA Scripts for automated decompiling of Perl program compiled by perlcc REVISION HISTORY Version Author Date 1.0 Swine ???????? perlcc parses Perl script and makes C code (which is in turn compiled to executable through CC) that initializes execution tree, which is later interpreted through perl_run documented function. The execution tree can be decompiled by documented Perl B::Decomp module (in latest Perl releases this module has gone along with perlcc). The trick is to inject the call to decompiler into the target program. See README inside the archive for further details | |||
Also listed in: | IDA IDC Scripts | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | Telerik JustDecompile |
| ||
---|---|---|---|---|
Author: | Telerik | |||
Website: | http://www.telerik.com/ | |||
Current version: | 2014.1.225.0 | |||
Last updated: | ||||
Direct D/L link: | http://www.telerik.com/downloads/productfiles/bgkht/JustDecompile_2014.1.225.0.msi | |||
License type: | Developer Licence is Free | |||
Description: | An alternative to Reflector and IlSpy. JustDecompile is .NET assembly browser and decompiler. - Fast code navigation - Create Visual Studio projects - Extract resources from assemblies - Easy assembly management - Zip file distribution - Visual Studio Extension - decompile referenced assemblies - Visual Studio inline decompilation (through JustCode) - Command line support - Integrate with Windows Explorer Context Menu - SL XAP decompilation from URL - Open API (extensible) - Edit assemblies with Reflexil - Deobfuscate with de4dot - C#5 (WinRT) support - APPX and WinMD support | |||
Also listed in: | .NET Decompilers, .NET Disassemblers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | uncc |
| ||
---|---|---|---|---|
Author: | littlejohn / megabug | |||
Website: | http://www.reteam.org/tools.html | |||
Current version: | 0.1.0 | |||
Last updated: | ||||
Direct D/L link: | http://www.reteam.org/tools/tf14.zip | |||
License type: | Free | |||
Description: | C decompiler | |||
Also listed in: | (Not listed in any other category) | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | VB Decompiler |
| ||
---|---|---|---|---|
Author: | GPcH Soft | |||
Website: | http://www.vb-decompiler.org | |||
Current version: | 8.2 | |||
Last updated: | April 20, 2011 | |||
Direct D/L link: | http://www.vb-decompiler.org/files/vb_decompiler_lite.zip | |||
License type: | Shareware | |||
Description: | VB Decompiler is decompiler for programs (EXE, DLL or OCX) written in Visual Basic 5.0/6.0. As you know, programs in Visual Basic can be compiled into interpreted p-code or into native code. Since p-code consists of high-level commands, there is a real possibility to decompile it into the source code (of course, the names of variables, functions, etc. will not be decompiled). VB Decompiler restores many p-code instructions and although there is a long way to the generation of the source code that can be compiled, the decompiler will make analyzing the program algorithm much easier and partially restore its source code. If a program was compiled into the native code, restoring the source code from machine instructions is not possible. But VB decompiler can help to analyze the program even in this situation as well. It contains a powerful disassembler that supports Pentium Pro commands including MMX and SSE. It allows you to disassemble all functions. There is also a code analyzer that searches for all API function calls and string references in the disassembled code and changes them into comments for analyzed strings. In general, VB Decompiler is an ideal tool for analyzing programs and it is perfect if you lose the source code and need to partially restore the project. | |||
Also listed in: | Visual Basic Decompilers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | VBReFormer |
| ||
---|---|---|---|---|
Author: | Sylvain Bruyere | |||
Website: | http://www.decompiler-vb.net/ | |||
Current version: | v6.2 Free Edition | |||
Last updated: | November 3, 2014 | |||
Direct D/L link: | http://download.decompiler-vb.net/setup_free.exe | |||
License type: | Shareware | |||
Description: | VBReFormer Free Edition is a limited edition of VBReFormer Professional Edition, a powerful set of recovery tools for Visual Basic 5 & 6 application. Decompiler, disassembler, and design editor at the same time, VBReFormer is a must-have tool for companies and professionals who work with version 5 & 6 of Visual Basic. VBReFormer disassemble all functions and methods in forms, controls, classes, and modules of Visual Basic application and try to recover the most complete Visual Basic source code than possible (if compiled with the native code option). Furthermore, thanks to its integrated decompilation engine, VBReFormer perfoms a native decompilation from Native code to Visual Basic code, in the fullest extent possible. Note: VBReFormer is not able to disassemble P-Code applications at the moment. VBReFormer recovers UI meta information and resources of Visual Basic 5 & 6 application (forms, usercontrols, designers, pictures, etc.) and extracts these information into a Visual Basic project. Even better, the integrated design editor of VBReFormer succeeds where others resources editors fail with Visual Basic applications with its ability to edit UI design of Visual Basic applications in a simple and easy way with no limitation of size, and with no need to recompile the application, working directly on its binary. | |||
Also listed in: | Disassemblers, PE Executable Editors, Resource Editors, Visual Basic Decompilers, Visual Basic Tools | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Tool name: | Whiskey Kon Tequilla VB P-Code Debugger |
| ||
---|---|---|---|---|
Author: | WKT Team | |||
Website: | N/A | |||
Current version: | 1.3e | |||
Last updated: | Around 2001 | |||
Direct D/L link: | Locally archived copy | |||
License type: | Free | |||
Description: | Also known as "WKT Debugger". At the time it showed up, the one and only P-Code disassembler / debugger mankind was able to use. Before it, debugging of the P-Code (Runtime interpreted Pseudo-VB code) with ordinary disassemblers / debuggers was really pain in your neck. This one saved me a lot of time, and probably helped postpone my deportation to the psychiatric research facility. | |||
Also listed in: | Disassemblers, Visual Basic Debuggers, Visual Basic Decompilers | |||
More details: | Click here for more details, screenshots, related URLs & comments for this tool! (or to update its entry) |
Feed containing all updates and additions for this category.
Feed containing all updates and additions for this category, including sub-categories.
Subcategories
There are 4 subcategories to this category.