decompiler

How Can I Protect My C# Code From Being Decompiled? [duplicate]

房东的猫 提交于 2019-12-22 17:28:07
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: .Net Obfuscation Alternative for Obfuscation in the .NET world Just a few minutes ago, I read that there are a number of tools, many free, that allow you to convert a C# .exe back to a VB solution. This means that my proprietary code can be viewed, edited, and recompiled/redistributed. Is there a way to prevent this? 回答1: In short you need to use Obfuscation. To name a few. Dotfuscator Obfuscator Skater

Decompiling and recompiling APK file

拜拜、爱过 提交于 2019-12-22 09:59:49
问题 I'm currently working on analyzing some android malwares and i need to decompile APK files. Reading an answer and many other answers like it, i know that we can extract java source code and other resources, create a new project and put those files in, make some modifications and compile the project. Is this approach applicable to every APK file ? If we aim to make very little or no modifications in the java source code, does this approach work for every APK file? If not, what is the main

Decompiled DLL - Clues to help tell whether it was C# or VB.NET?

╄→尐↘猪︶ㄣ 提交于 2019-12-22 09:15:07
问题 When using something like DotPeek to decompile a DLL, how do I tell whether it was originally coded in VB.Net or C#? I gather there's no easy way to tell, but that there may be tell-tale signs (ie. clues) in some of the decompiled code? 回答1: You can look for a reference to the Microsoft.VisualBasic library. If that is present, it's very probable that the code was made using VB. The library is sometimes included in C# projects also, but that is not very common. If the reference is not there,

Google Closure decompiler?

試著忘記壹切 提交于 2019-12-21 22:21:49
问题 I was looking for a way to decompile JavaScript that was compiled by Google Closure. I did find a Decompiler class (https://code.google.com/p/closure-compiler/source/browse/lib/rhino/src/org/mozilla/javascript/Decompiler.java?name=v20140407), however I haven't had much luck with it. Anyone try this before or know of some other method? 回答1: Usually, I just run the code through the Closure Compiler in WHITESPACE mode and enable the pretty printing options. 来源: https://stackoverflow.com

Converting Kotlin to Java

大城市里の小女人 提交于 2019-12-19 13:15:09
问题 Can anyone help me about converting Kotlin code in Android Studio to Java ? I went through the below process: Tools >> Kotlin>> Decompile Kotlin to Java But the "Kotlin to Java" option is disabled. What should I do? 回答1: Currently Tools >> Kotlin>> Decompile Kotlin to Java is enabled only for compiled Kotlin classes ( .class , not .kt extension) located at app/build/tmp/kotlin-classes/ after a successful build . A note to the @Uriel Frankel's workaround: If Tools >> Kotlin >> Show Kotlin

Converting Kotlin to Java

我们两清 提交于 2019-12-19 13:13:03
问题 Can anyone help me about converting Kotlin code in Android Studio to Java ? I went through the below process: Tools >> Kotlin>> Decompile Kotlin to Java But the "Kotlin to Java" option is disabled. What should I do? 回答1: Currently Tools >> Kotlin>> Decompile Kotlin to Java is enabled only for compiled Kotlin classes ( .class , not .kt extension) located at app/build/tmp/kotlin-classes/ after a successful build . A note to the @Uriel Frankel's workaround: If Tools >> Kotlin >> Show Kotlin

Java decompiler for netbeans

▼魔方 西西 提交于 2019-12-18 11:54:13
问题 Is there any open source java decompiler for netbeans just like jadclipse for eclipse. 回答1: What I do, I decompile the JAR with jd-gui, save all the sources, then create a new library in Tools -> Libraries, and add the new sources zip in the sources tab, job done. 回答2: There is this plugin to integrate JAD into NetBeans, but it unfortunately has not been updated to work in NetBeans 6.8, so it may be of limited value. 回答3: Have at look at http://java.decompiler.free.fr/. I don't know actually

How to get Java Decompiler / JD / JD-Eclipse running in Eclipse Helios

蓝咒 提交于 2019-12-17 15:22:58
问题 Java Decompiler (JD) is generally recommended as a good, well, Java Decompiler. JD-Eclipse is the Eclipse plugin for JD. I had problems on several different machines to get the plugin running. Whenever I tried to open a .class file, the standard "Source not found" editor would show, displaying lowlevel bytecode disassembly, not the Java source output you'd expect from a decompiler. Installation docs in http://java.decompiler.free.fr/?q=jdeclipse are not bad but quite vague when it comes to

decompile an app binary to get back to source code

巧了我就是萌 提交于 2019-12-17 05:12:35
问题 Is there anyway to take a binary - even signed by yourself, and get back to the code? I'm trying to recover something that I deleted a while ago... but have the binary here. Any ideas? 回答1: You can disassemble a binary and get back assembly source, but there is no way to get back your original Objective-C structured source code. EDIT: You may want to give Hopper a try. I didn't try it personally yet but Mike Ash says it's good. 回答2: You might want to have a look at Hex-Rays decompiler. You

how can i modify package name of decompiled apk? [closed]

那年仲夏 提交于 2019-12-14 03:38:12
问题 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 4 years ago . I have decompiled a voip calling apk file with Apktool and i tried to change itz package name... But i getting error that unfortunately app stopped`... What i did that search the package name inside the all files (root dir)and replace every occurrence with new package name by with notepad ++... Here problem is