decompiling

How do I decompile a .jar file? [duplicate]

被刻印的时光 ゝ 提交于 2019-12-06 01:23:26
问题 This question already has answers here : Closed 8 years ago . Possible Duplicates: Where can I find a Java decompiler? How to decompile a whole Jar file? I have a .jar file. Its a single file, but I want to "decompile" it to get at the original java code (or at whatever would be closest to the Java code - something I could understand, and edit). I believe my file is (specifically) a java applet, but its saved as an executable jar file (.jar). How would I do such a thing? 回答1: Take a look at

Any open source Java Decompiler for Windows 7 [closed]

*爱你&永不变心* 提交于 2019-12-06 01:04:28
问题 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 looking for free open source java decompilers. Any suggestions? We are using Windows 7 I found out that Dcompiler is open source,

JADClipse not working with Eclipse 3.6

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-05 23:33:27
问题 Does Jadclipse work on Eclipse 3.6 ? I have installed Jadclipse 3.3.0 on my Eclipse 3.6 by copying the jar into the plugins directory and restated eclipse. Now I have the jadclipse menu under Windows->Preferences but when trying to de-compile any class it simply does not de-compile. I get the usual eclipse screen saying the source is unavailable. There are no errors in the Error Log . Any idea? 回答1: I eventually found the answer here. Running eclipse with -clean switch and setting the file

Confuser .NET Obfuscator. Is it safe? [closed]

為{幸葍}努か 提交于 2019-12-05 19:01:42
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . I'm currently developing an application where it's rather crucial to keep the user from decompiling the code. Now, I'm aware of the fact that most .exes are decompilable if executed by an experienced programmer. However, my goal is simply to keep it safe from the "regular" user

Is it possible to prevent decompilation of .NET MSIL DLL?

假装没事ソ 提交于 2019-12-05 14:40:56
Almost all the .net assemblies can be de-compiled using Reflection .Which means that all .net products are open source since the code can be easily be used by other developers. Isnt there a way so that we can encrypt the codes (at least for some security logic) so that it cannot be easily cracked or misused. Edit Old question Is winforms .net really equal to open source? was edited considering comments regarding proper use of the word Open Source No All code can be reverse engineered, copied, cloned, reused, relinked and other things. What open source means is that it is free in the legal

Decompiling code (language independent) [closed]

允我心安 提交于 2019-12-05 07:51:23
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . What software can be used to view the source code in a .dll file, irrespective of the programming language used for the source code? If it's a managed DLL (.NET), you can open it using tools such as Reflector or ILDASM and you'll see the IL code. (Edit 2017-02-03: In 7+ years, .NET disassemblers have of course progressed a lot and are now able to produce very decent C# code) If it's an unmanaged DLL (native),

Eclipse Plugin to Convert Class Files to Java Source Code [closed]

不问归期 提交于 2019-12-05 05:49:54
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . Is there available an Eclipse plugin to decompile class files when source is not available (generate .java source code from .class files), something similar to what Resharper does for C# in VS.NET? Alternatively, is there a plugin which enables a friendlier view of the API of a class files than the default Eclipse view? 来源: https://stackoverflow.com/questions/20046186/eclipse-plugin-to-convert-class-files-to

Finding constants from a decrypted iOS app executable

烈酒焚心 提交于 2019-12-05 03:01:34
问题 I'm trying to find a constant (something like a secret token) from inside of an iOS app in order to build an app using an undocumented web API (by the way, I'm not into something illegal). So far, I have the decrypted app executable on my Mac (jailbreak + SSH + dumping decrypted executable as file). I can use the strings command to get a readable list of strings, and I can use the class-dump tool (http://stevenygard.com/projects/class-dump/) to get a list of interface definitions (headers) of

How to convert CIL to a LINQ Expression Tree [closed]

南楼画角 提交于 2019-12-05 01:19:36
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . Has any work been done on the direct conversion of CIL to LINQ expression trees? This would include class libraries, blogs, books, academic papers, etc. What are the known mismatches between CIL and LINQ

How can I decompile many jars at once?

痞子三分冷 提交于 2019-12-04 23:53:56
问题 Well, I guess subject says it all :) The ideal solution would find all jars within a certain folder (they might be in sub-folders), and write all the sources found into a single "src" directory, of course maintaing the package folders. Concrete use case: decompile all Eclipse plugin jars 回答1: Download JAD Decompiler. Unjar all your jar files (using the command jar xvf ) to some directory. Let's call this ${unjar.dir} . Create a directory for JAD to write out the decompiled sources. Let's call