decompiler

Java decompiler for netbeans

Is there any open source java decompiler for netbeans just like jadclipse for eclipse. ...

Eclipse Class File Metadata

In Visual Studio, I can obtain a succinct list of public methods/members exposed in a class for which I do not have the source (i.e. bundled inside a DLL) by pressing F12 (GoToDefinition). Similarly, I am learning the Android API - in Eclipse. Jumping to an Android framework method definition produces decompilation output which is not i...

Encrypting password in compiled C or C++ code

Hello!, I know how to compile C and C++ Source files using GCC and CC in the terminal, however i would like to know if its safe to include passwords in these files, once compiled. For example.. i check user input for a certain password e.g 123, but it appears compiled C/C++ programs is possible to be decompiled. Is there anyway to com...

Decompiler for APK?

I know it is not right to do this, but is there any APK decoder/decompiler available around? ...

Decompiling an ARM asm back to C

I wrote a nice ARM assembler routine a few years back and it has done its job beautifully over the years on the ARM embedded systems it was designed for. Now, the time has come to port it on to non-ARM systems and I was wondering if there was tool or some sort of method to take my original ARM assembler source and get a rudimentory C fi...

Best Java decompiler freeware

Possible Duplicate: Where can I find a Java decompiler? Dear All, I have lost my .java and only have class files left on server.i want to recover back my original code.please suggest which decompiler i can use which replicates me the exact code. Earlier i had used DJ decompiler but it changes the Java code and changes the dat...

.dll decompiler

I have inherited a project from a previous developer. All the ASP .NET code behind files are contained within a .dll and the original files are unavailable. Is there any reliable decompiler out there that produces fairly readable code? I've heard mixed responses while browsing other forums - some say there are applications that will deco...

Is there a java classfile / bytecode editor to edit instructions?

Is there a utility (or eclipse plugin) for editing java class files? I'd like to manipulate the bytecode of a java class file without recompiling it nor having a complete buildpath. E.g. to rename methods, add/delete instructions, change constants etc. The only utilities I found are: classeditor but it's very limited in functionalit...

Password extractable from executable code?

If a password is hard-coded into a variable in source code such as VB, could someone extract this password by looking at the compiled executable code? If so, what can be done to avoid this? ...

ActionScript Protect .swf/.swc Files From Decompilation?

it is possible to protect a .swf file from decompilation? i've been reading about compiling class libraries in a .swc file for distribution without revealing the code - possibly selling it. however, there are .swf decompilers you can use to expose the code, and a .swc file is simply a .zip archive, so changing myswc.swc to myswc.zip wi...

.dcr director file decompiler?

Do you know if it exists a decompiler o similar for Adobe Director .drc files? ...

How to view the source code from jar file in my own JAVA GUI ?

I have one GUI with one list box to display the list of methods in the class. I can achieve it using reflection. But can I view the source code in anotehr text area on selecting the method name ? I knew about decompilers. but I don't want to see source code in their window. I want to use some thirdparty lib so that I can see the source...

How to make Reflector not Choke on new syntax

Is there a way to make reflector disassemble back to the new c# constructs? Auto-Implemented properties are coming out like this: [CompilerGenerated] private string <TypeName>k__BackingField; public string TypeName { [CompilerGenerated] get { return this.<TypeName>k__BackingField; } [CompilerGener...

is it possible to convert exe file to VB Project?

i lost my VB6 Project source files accidentally. but i have the executable files. is it possible to convert the exe files to VB Projects? is there any opensource/free decompiler available? ...

What would be a more accurate decompiler than jad for Eclipse to get rid of <-MISALIGNED ->?

I have used jad for many years, most of these with the Jadclipse plugin to eclipse which makes it quite usable. Especially with the "Align code for debugging" which allows you to see the decompiled code for any line in a stack trace. Very nice. Unfortunately I've seen more and more that the <- MISALIGNED -> comment sneaks in, which is...

Choose and test java decompiler.

Now I'm trying to find the best java decompiler, I found these: http://java.decompiler.free.fr/ http://www.reversed-java.com/fernflower/ http://dj.navexpress.com/ http://cavaj-java-decompiler.en.softonic.com/ With these decompilers I handle byte code of this class: public class ss { public static void main(String args[]) { try{ ...

.net Reflector "Object reference not set to an instance of an object"

Hello, I'm working with .net Reflector to view some .net Compact Framework .dlls and I'm getting an "Object reference not set to an instance of an object" error for one of them. I downloaded the trial version of 9Rays.Spices.Net and it loaded the .dll just fine. The only problem is that I'm getting only every other method. I was able...