decompiler

How to convert 32-bit compiled binary to 64-bit [closed]

为君一笑 提交于 2019-12-09 15:32:20
问题 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 2 years ago . Background: We have acquired a software product that builds to a 32-bit Windows application in Visual Studio. We wish to port this application to 64-bit. A mission-critical component of this code is a black-box static library (.a file) originally built using gFortran by a third

Best tool to decompile a C# .Net 1.1 application [duplicate]

大城市里の小女人 提交于 2019-12-09 13:22:54
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: A .net disassembler/decompiler Is there a “free” alternative to .NET Reflector? A good while ago we wrote C# .NET 1.1 application for a customer and during the process of office moves and redundancies, the source code was not checked into Source Safe. The customer has now reported an issue and we don't want to rewrite the app from scratch. I believe we should be able to get the source code by decompiling the

Cannot decompile System.Windows.dll for Windows Phone 8 with ILSpy

断了今生、忘了曾经 提交于 2019-12-09 08:33:30
I am using ILSpy , a free .NET assembly decompiler, to analyze the standard and 3rd party .NET assemblies. It works enough well for the standard .NET WinForms and WPF libraries, but I could not decompile System.Windows.dll for Windows Phone 8 located in C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\WindowsPhone\v8.0\ . It displays the members, but their internals (source code) are empty. Is it a problem of ILSpy, or we cannot decompile Windows Phone .NET libraries using any other tools like Red Gate's .NET Reflector? Is there any other way to get/view the source code of these

source code from APK

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-09 06:49:48
问题 I have searching in search Engine regarding convert dex file to jar file but I got failure to find dex2jar file in code.Google.com I have getting basic idea from here. But when I download file from dex2jar-0.0.9.8.zip form here, I unable to found dex2jar.jar file so can you tell me else where I can find file? 回答1: Extract the dex2jar-0.0.9.8.zip file and move to desktop folder like dex2jar-0.0.9.7...then take the android app classes.dex file and move to this directory ...open the terminal and

Java Bytecode decompilation — Unused Methods Present?

怎甘沉沦 提交于 2019-12-08 09:03:22
问题 Say I have private void ThisIsMySecurityMethodPleaseLookHERE() { //security stuff } In my program, but that method is called nowhere in any of the actually executed code. Does it get compiled to bytecode? Or does the Java compiler recognize that fact and filter it out? I know it would never make it PAST bytecode, since it is not truly called. I ask because I know Java is notoriously easy to decompile. would all of my unused methods also be present when they decompile one of my .class files? I

Cannot decompile System.Windows.dll for Windows Phone 8 with ILSpy

纵饮孤独 提交于 2019-12-08 05:13:04
问题 I am using ILSpy, a free .NET assembly decompiler, to analyze the standard and 3rd party .NET assemblies. It works enough well for the standard .NET WinForms and WPF libraries, but I could not decompile System.Windows.dll for Windows Phone 8 located in C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\WindowsPhone\v8.0\ . It displays the members, but their internals (source code) are empty. Is it a problem of ILSpy, or we cannot decompile Windows Phone .NET libraries using any

What is this referencing?

◇◆丶佛笑我妖孽 提交于 2019-12-07 10:54:30
问题 Suppose I have this class: public class class1 extends Applet implements Runnable { private String s; private URL u; ... } And a second class: class TS extends Thread { private final class1 _$97913; public TS(class1 paramclass1) { this._$97913 = paramclass1; } ... public void PostData() { ... class1.access$16(this._$97913, new Socket(class1.access$17(this._$97913), 80); ... } ... } Can someone explain how class1.access$16(this._$97913, new Socket(class1.access$17(this._$97913), 80); is

Is it possible to change a value inside a Lua bytecode? How? Any idea?

五迷三道 提交于 2019-12-07 08:50:48
问题 I got a script that is no longer supported and I'm looking for a way to change the value of a variable in it... The script is encrypted ( loadstring/bytecode/ something like that) e.g.: loadstring('\27\76\117\97\81\0\1\4\4\4\8\0\') I can find what I want to change (through notepad after I compile the script), but if I try to change the value, the script won't work, if I change and try to recompile it still won't work: "luac: Testing09.lua: unexpected end in precompiled chunk" ... Any ideas? I

Getting the AST of a function

℡╲_俬逩灬. 提交于 2019-12-07 08:44:41
问题 Say I have a function: function hi() print('hi') end I'd like to be able to take this function as an argument and perform analysis on it, such as listing all the function calls in it, seeing all the variables it references, etc. Note that I'm not talking about analysing source code ; I don't have the source text of the function, I just have the function object, i.e. this is being done at runtime. The way I think you'd go about doing this is to get the AST of the function. But I don't know how

ANN for decompiler?

大憨熊 提交于 2019-12-06 12:25:01
问题 Has there ever been any attempts at utilizing artificial neural networks in decompilation? It would be nice if it was possible to provide the trimmed semantics of source along with the code in to a neural network so it could learn the connection between the two. I assume this would likely lose it's effectiveness when there is optimizations and maybe work better for high level languages too but I'm interested in hearing any attempts anyone has had at this. 回答1: I'm assuming you mean