decompiling

How to decompile to java files intellij idea

会有一股神秘感。 提交于 2019-12-18 10:18:07
问题 IDEA has a great built-in feature - decompiler. It works great.I can copy source code, but I cannot find option to extract all decompiled java classes to java files. This project has a lot of java classes and packages, so I will be to long to copy this manually. Does anyone know how to extract to java source files. Thx 回答1: To use the IntelliJ Java decompiler from the command line for a jar package follow the instructions provided here: https://github.com/JetBrains/intellij-community/tree

Decompiling iOS Objective-C binaries [duplicate]

我只是一个虾纸丫 提交于 2019-12-18 08:59:16
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: decompile an app binary to get back to source code I've got an iPhone/iPad application, what is kinda interesting. It uses a special internal XML format for the stuff it does, but without a device, I can't see how it works. I want to recreate this function for Android phones (freeware and opensource maybe) but for that I would like to see how the reading part works, actually, I would like to know the XML format

Is there a decompiler that will work on Visual Studio 6 C++

我们两清 提交于 2019-12-18 08:49:10
问题 I have a project that I am trying to fix from a guy that left (let go) from my company. He has violated every fundamental principle of software engineering, not using source control, not backing up the source before you make more changes, etc. etc. I need to make changes to an application that is in the field and I don't have the original source code, but I have an executable. What I need is a decompiler that will decompile a Visual Studio 6 C++ application and provide me with some type of

python: how to get the source from a code object? [duplicate]

白昼怎懂夜的黑 提交于 2019-12-18 06:49:51
问题 This question already has answers here : Exploring and decompiling python bytecode [closed] (6 answers) Closed 6 years ago . let's suppose we have a python string(not a file,a string,no files) TheString = "k=abs(x)+y" ok? Now we compile the string into a piece of python bytecode Binary = compile( TheString , "<string>" , "exec" ) now the problem: how can i get from Binary , supposing i don't know TheString , a string that represents the original string object? shortly: what is the function

Decompiling a compiled program with Go

会有一股神秘感。 提交于 2019-12-17 22:45:04
问题 I have built a simple executable program with Go . I've compiled the code into a static binary program. I want to decompile the output binary file and get the Go source code. Is this possible or not? 回答1: There is no tool to do that and as Go programs are compiled into machine code, they do not contain enough information to translate them back into Go code. Standard disassembly techniques are still possible though. 回答2: There is no known tool which currently decompiles to Go sources. Go is a

How to protect a Jar file from being decompiled? [duplicate]

怎甘沉沦 提交于 2019-12-17 19:39:02
问题 This question already has answers here : What can done to secure jar files besides obfuscation? (3 answers) Closed 4 years ago . I'm developing an application using java but I'm not going to release the code. The problem is, I tested one of these jar de-compilers and it was able to get the code from my jar file almost perfectly! My question is how can I distribute my jar file without my code being extracted from it? 回答1: As Java preserves most of the "metadata" during compilation (which

Batch decompiling of Java files with JD-GUI

与世无争的帅哥 提交于 2019-12-17 17:39:52
问题 I'm looking for a program to batch decompile Java classes. I found JAD, but it didn't support some new features of Java, and the benefit of this program is that it can execute from command line and generate a *.java file automatically. I also found JD-GUI. It supports most features of Java, but the shortcoming is that it can't do batch processing. You need to open the class file with the program and click save. Is there a way to make JD-GUI do batch processing like JAD? 回答1: Command line

Best tool(s) for decompiling Lua bytecode? [closed]

こ雲淡風輕ζ 提交于 2019-12-17 10:54:33
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I am really having trouble finding a good working Lua bytecode decompiler. I'm trying to decompile some scripting files I found in a

How to protect Java codes against decompiler? [closed]

橙三吉。 提交于 2019-12-17 06:51:36
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . As we know , there are a lot of java decompiler tools which can convert .class to .java file. Therefore,we need to protect our .java

Decompiling Objective-C libraries

一世执手 提交于 2019-12-17 03:51:09
问题 I've just finished a library in Objective-C that I compiled as a Static Library for distribution. I'd wanted to know what chances to get this decompiled are out there. Do you know any software that can do this? If so, how could I protect me better? EDIT: My static lib is made for iPhone / ARM I created an algorithm that depending on the some parameters of the app, it can run as demo or as full code. You init the object with X variables and unlock the full version. I was wondering if they'll