decompiler

Decompiling obfuscated java bytecode [closed]

余生颓废 提交于 2021-02-08 12:59:12
问题 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 9 years ago . I work on a platform which runs Java apps. Those apps are often obfuscated, most of them using ProGuard, which makes debugging issues

Is it possible to know in what language an exe file is written?

老子叫甜甜 提交于 2020-03-12 17:59:23
问题 I have an exe file and I decompiled it with Ida. I was told the program coded in Delphi, so I tried to decompile with DeDe but it failed, no output and no error. And I'm wondering is it possible to find language used in creating exe by trying different decompilers written specifically for a programming language? Or can they fail for some other reason? 回答1: In many cases it is possible to identify the compiler used to compile the code, and from that, the original language. Most language

Is it possible to know in what language an exe file is written?

▼魔方 西西 提交于 2020-03-12 17:44:56
问题 I have an exe file and I decompiled it with Ida. I was told the program coded in Delphi, so I tried to decompile with DeDe but it failed, no output and no error. And I'm wondering is it possible to find language used in creating exe by trying different decompilers written specifically for a programming language? Or can they fail for some other reason? 回答1: In many cases it is possible to identify the compiler used to compile the code, and from that, the original language. Most language

Is it possible to know in what language an exe file is written?

帅比萌擦擦* 提交于 2020-03-12 17:40:54
问题 I have an exe file and I decompiled it with Ida. I was told the program coded in Delphi, so I tried to decompile with DeDe but it failed, no output and no error. And I'm wondering is it possible to find language used in creating exe by trying different decompilers written specifically for a programming language? Or can they fail for some other reason? 回答1: In many cases it is possible to identify the compiler used to compile the code, and from that, the original language. Most language

Recover Java code from class file

最后都变了- 提交于 2020-02-29 07:51:49
I'm so careless I deleted a Java web project in eclipse. the only thing I have is a war file which I got from server. Thanks to Procyon / Java Decompiler, I recovered all java source code from war class file. It's really a great tool! https://bitbucket.org/mstrobel/procyon/wiki/Java%20Decompiler You can download it from https://bitbucket.org/mstrobel/procyon/downloads then execute following command to decompile class files in to current directory. java -jar procyon-decompiler-0.5.27.jar *.class -o . For spring MVC project, it cannot recover @Autowried annotation, you have to add it manually.

Flutter debug Apk decompile to get source code

ⅰ亾dé卋堺 提交于 2020-01-24 03:11:45
问题 I have lost source code of my flutter application due to drive corruption but i have my debug.apk in my android phone . Can anyone please tell me how to decompile the Flutter apk to get source code. I have tried decompiling it using decompilers but it is not giving my source code as the flutter source code is in dart language . 回答1: If your debug.apk is in debug mode, than you can use apktool in order to extract the components of the apk (I'm using the word extracting since apk is a zip file)

Possible to view source code or decompile XLL Excel add in

Deadly 提交于 2020-01-23 11:04:40
问题 Is it possible to view the source code of the XLL Excel add in without having the original source code? I'm guessing that this XLL was written in C#, but not sure. I.e. a .NET DLL you can decompile with dotPeek, or an XLA file you can open in Excel via Developer > Visual Basic. I tried both approaches with no luck. 回答1: Do you know if this Excel Add-In was built using Excel-DNA? If it was, then you can extract the .NET assemblies from the .XLL file using ExcelDnaUnpack. Source code is on