decompiling

How do you decompile a swf file [closed]

可紊 提交于 2019-11-26 23:42:15
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 there any programs online or offline that I could use? Ohad Schneider This can also be done freely online: http://www.showmycode.com/ EDIT A quick Google search turned up this list, which probably has all the tools you could possibly want (look at the comments as well): http://bruce-lab.blogspot.co.il/2010/08/freeswfdecompilers.html Usually 'lost' is a euphemism for "We stopped paying the developer and now he wont give us the source code." That being said, I own a

The quest for the Excel custom function tooltip

女生的网名这么多〃 提交于 2019-11-26 23:36:34
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 built-in Excel function, either inline or in the formula bar: The widely accepted answer to this

Decompiler for Visual Basic 6 program?

社会主义新天地 提交于 2019-11-26 23:26:03
问题 In the FAQ of the Boomerang decompiler (which currently only decompiles to C-code) they make a brief mention that Visual Basic exes happen to include a lot of metadata, so a Visual Basic decompiler might be able to produce better source code for Visual Basic programs than what Boomerang can give you. Since the program I'm trying to decompile might actually be a VB 6 program, do you know of any decompilers for VB6 exes? (Don't worry this isn't for nefarious purposes. I just have to create a

Extract source code from .jar file

我的未来我决定 提交于 2019-11-26 21:20:55
Is there a way to extract the source code from an executable .jar file (Java ME)? adarshr Use JD GUI . Open the application, drag and drop your JAR file into it. elachance You can extract a jar file with the command : jar xf filename.jar References : Oracle's JAR documentation dharam 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 save it at any location on your system. Drag and drop the jar for which you want the

how to decompile .jasper files into .jrxml files

笑着哭i 提交于 2019-11-26 21:12:44
问题 I lost all my .jrxml files, but I have .jasper files. Can I decompile .jasper files to .jrxml files? If yes, that would be a great help for me. 回答1: *.jasper files can be opened directly from ireport, Ireport decompile automatically the file. 回答2: import net.sf.jasperreports.engine.JRException; import net.sf.jasperreports.engine.util.JRLoader; import net.sf.jasperreports.engine.xml.JRXmlWriter; import net.sf.jasperreports.engine.JasperReport; class JasperToXml { public static String

Java Decompiler [closed]

99封情书 提交于 2019-11-26 18:25:29
问题 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 . Can you recommend a Java decompiler for Eclipse? My other questions is what restrictions is there for using a decompiled code from an other Java program? Illegal or what? I dont know much about licenses. Thanks for reading. 回答1: I'd suggest the one that pops up on google, which is the JD Java decompiler. It

Decompile an APK, modify it and then recompile it

。_饼干妹妹 提交于 2019-11-26 18:14:50
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 modify the smali files, but it seems to be really complicated when we want to add a lot of code! My

How to protect compiled Java classes?

荒凉一梦 提交于 2019-11-26 15:19:49
问题 I know, many similar questions has been asked here. I am not asking if I can protect my compiled Java class - because obviously you will say 'no you can't'. I am asking what is the best known method of protecting Java classes against de-compiling? If you aware of any research or academic paper in this field please do let me know. Also if you have used some methods or software please share you experience? Any kind of information will be very useful. Thank you. 回答1: First if you're targeting

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

断了今生、忘了曾经 提交于 2019-11-26 14:56:53
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. willjcroz The first stop for me would be to optimise and obfuscate the code with ProGuard which is known to work with byte code targeted at

Is there a C++ decompiler? [closed]

∥☆過路亽.° 提交于 2019-11-26 12:55:29
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 . 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 reversing the code. If you didn't strip the binaries there is some hope as IDA Pro can produce C-alike code for you to work with. Usually it is very rough though, at least when I used it a couple of years ago. information is discarded in the compiling process. Even if a decompiler could