decompiling

How to decompile an APK or DEX file on Android platform? [closed]

半腔热情 提交于 2019-11-26 12:33:56
问题 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 . Is it possible to decompile an APK or DEX file file on Android platform? Are there any tools that can decompile an APK file? 回答1: You need Three Tools to decompile an APK file. Dex2jar - Tools to work with android .dex and java .class files ApkTool - A tool for reverse engineering Android apk files JD-GUI - Java

Extract source code from .jar file

两盒软妹~` 提交于 2019-11-26 10:07:03
问题 Is there a way to extract the source code from an executable .jar file (Java ME)? 回答1: Use JD GUI. Open the application, drag and drop your JAR file into it. 回答2: You can extract a jar file with the command : jar xf filename.jar References : Oracle's JAR documentation 回答3: I believe this can be done very easily. You can always extract the source files (Java files) of a jar file into a zip. Steps to get sources of a jar file as a zip : Download JAD from http://techieme.in/resources-needed/ and

Decompile an APK, modify it and then recompile it

淺唱寂寞╮ 提交于 2019-11-26 08:54:46
问题 I need to modify an existing APK, modify the sources and then recompile it. I can decompile it using dex2jar or apktool, it\'s working great From the jar file I can obtain the java sources (using jd-gui) Then I can modify the java files But now I would like to know how to recompile the java files and put them back into a jar file! (the jar part should be easy, the main problem seems to be how to recompile the java files for android) I know that an other solution is to use apktool and then

How do you decompile a swf file [closed]

ε祈祈猫儿з 提交于 2019-11-26 08:48:39
问题 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 the maintainer of a site that has allegedly \'lost\' the source code to a flash swf file. How do I decompile this source? Are

The quest for the Excel custom function tooltip

僤鯓⒐⒋嵵緔 提交于 2019-11-26 08:45:24
问题 This question has been asked before, but each time the accepted answer is simply a resignation to provide function descriptions using Application.MacroOptions (VBA6) (VBA7), but this information does not actually appear as a tooltip, so it does not solve my problem. The Goal What we all desire is to be able to define custom functions by any means (VBA, VSTO, or COM add-in) and give the user the benefit of a pop-up/tool-tip description of the function and its parameters, as appears for every

Is there a Visual Basic 6 decompiler?

空扰寡人 提交于 2019-11-26 05:53:56
问题 I lost the source code from one project I did on the company I\'m working for and haven\'t been able to find a Visual Basic 6 decompiler; does that even exists? I only have the EXE that I\'ve rescued from a user\'s machine. 回答1: For the final, compiled code of your application, the short answer is “no”. Different tools are able to extract different information from the code (e.g. the forms setups) and there are P code decompilers (see Edgar's excellent link for such tools). However, up to

Is it really impossible to protect Android apps from reverse engineering?

半城伤御伤魂 提交于 2019-11-26 04:06:49
问题 As we know, Android apps are written in Java. In Java, no matter what you do, it is impossible to protect compiled code from decompilation or reverse-engineering, as the Stack Overflow question How to lock compiled Java classes to prevent decompilation? suggests. How would one go about protecting an app that contains algorithmic trade secrets from reverse-engineering? By \"how\" I mean not only software techniques, but also other creative approaches. 回答1: The first stop for me would be to

How can I protect MySQL username and password from decompiling?

北慕城南 提交于 2019-11-26 03:33:05
问题 Java .class files can be decompiled fairly easily. How can I protect my database if I have to use the login data in the code? 回答1: Never hard-code passwords into your code. This was brought up recently in the Top 25 Most Dangerous Programming Mistakes: Hard-coding a secret account and password into your software is extremely convenient -- for skilled reverse engineers. If the password is the same across all your software, then every customer becomes vulnerable when that password inevitably

Is it possible to decompile an Android .apk file?

99封情书 提交于 2019-11-26 03:06:22
Are the users able to convert the apk file of my application back to the actual code? If they do - is there any way to prevent this? Matthew Flaschen First, an apk file is just a modified jar file. So the real question is can they decompile the dex files inside. The answer is sort of. There are already disassemblers, such as dedexer and smali . You can expect these to only get better, and theoretically it should eventually be possible to decompile to actual Java source (at least sometimes). See the previous question decompiling DEX into Java sourcecode . What you should remember is obfuscation

Is there a C++ decompiler? [closed]

北慕城南 提交于 2019-11-26 02:32:42
问题 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 3 years ago . I have a program in which I\'ve lost the C++ source code. Are there any good C++ decompilers out there? I\'ve already ran across Boomerang. 回答1: You can use IDA Pro by Hex-Rays. You will usually not get good C++ out of a binary unless you compiled in debugging information. Prepare to spend a lot of manual labor