decompiler Questions

2

Solved

Given the following C# code in which the Dispose method is called in two different ways: class Disposable : IDisposable { public void Dispose() { } } class Program { static void Main(string[]...
Churchwell asked 13/4, 2018 at 11:11

2

Solved

Decompile Scala code: why there are two overridden methods in the derived class? class A { private var str: String = "A" val x: A = this override def toString(): String = str def m1(other: A...

3

There must be a million of books and papers on the theory and techniques of building compilers. Are there any resources on doing the reverse? Im not interested in any particular HW platform. Lookin...
Seeley asked 27/4, 2011 at 17:42

6

I am trying to set up a conditional breakpoint in decompiled code, but Eclipse keeps giving me the error: Conditional breakpoint has compilation error(s) Reason: Evaluations must contain eit...
Alright asked 20/4, 2012 at 15:7

3

Solved

I know Java compiler replace all type parameters in generic types with their bounds or Object if the type parameters are unbounded during the process of Type Erasure. The produced machine bytecode ...
Auric asked 31/8, 2017 at 21:26

1

Solved

I wrote an utility to create a CFG (Control Flow Graph) for a java method whose nodes are basic blocks instead of instructions. I could not consider exception throws to be edges in CFG. The reason...
Lorikeet asked 4/7, 2017 at 13:23

1

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...
Anishaaniso asked 19/6, 2017 at 16:15

3

Solved

I'm looking for a decompiler capable of transforming MIPS machine code into C code. Any suggestions?
Malissa asked 10/6, 2009 at 17:34

2

Solved

As far as I know, both apktool and baksmali are able to produce smali code out of .apk (.dex) files, and apktool makes use of the dexlib2. They are both APK packing/unpacking tools But still I am ...
Uraemia asked 30/3, 2017 at 7:19

13

Solved

Is there some way to obfuscate C-based executables or libraries to prevent decompilation?
Baranowski asked 16/2, 2010 at 14:37

1

Solved

I'm trying to figure out how to use the Fernflower Java decompiler. I can find java-decompiler.jar at the following location: ~/idea-IC-162.1628.40/plugins/java-decompiler/lib/java-decompiler.jar...
Innominate asked 5/10, 2016 at 2:2

3

Solved

I want to see how the public String Replace(String oldValue, String newValue); method that is inside mscorlib.dll (System.String) works. I decompiled the mscorlib.dll with dotPeek and inside t...
Hoofbound asked 9/9, 2016 at 4:42

6

Solved

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 fr...
Gibbosity asked 9/3, 2012 at 9:15

1

Solved

I have worked pretty a lot analyzing Android projects with different reverse engineering tools, generally for secure purposes, to see what can be seen by a hacker when he/she gets my app. I've met ...
Basle asked 28/1, 2016 at 19:13

1

Solved

One of my side projects is a decompiler that turns native code into LLVM IR, simplifies it and outputs pseudo-C. An essential phase of the program's process is pattern-independent control flow stru...
Rosaleerosaleen asked 14/2, 2016 at 23:23

2

Solved

Hei. I was reading Digi Traffic Accelerator's decompiled source (I think it is the best way to learn), until I got some non-understandable code! Please take a look: internal class ProxyFarm { p...
Idyllist asked 10/4, 2013 at 1:20

4

Solved

I want to disassemble an entire .NET assembly with ILSpy. I used this code as base: http://skysigal.xact-solutions.com/Blog/tabid/427/entryid/2488/Default.aspx And it works fine, just when I have...
Radome asked 31/12, 2011 at 17:28

1

I want to know is there any way/tools to decompile framework file in objective C to get the source code. Just like in java there are JAD and other tools to decompile byte code to source code.
Onitaonlooker asked 28/1, 2016 at 12:33

3

Solved

I'm in a really bad situation. I lost my source code and my customer needs to change a little bit in the application. Think of edit an assembly for an example: Test.dll then add a code line and fin...
Pogge asked 10/12, 2012 at 7:40

2

Solved

I was just messing around. I downloaded the dex2jar http://code.google.com/p/dex2jar/ and the Java Decompiler JD-GUI http://java.decompiler.free.fr/?q=jdgui I got my own apk file (signed, sealed a...
Haynes asked 29/7, 2012 at 2:7

19

Solved

What program can I use to decompile a class file? Will I actually get Java code, or is it just JVM assembly code? On Java performance questions on this site I often see responses from peo...
Chon asked 7/11, 2008 at 16:0

5

Solved

When I launch JD-GUI on my Ubuntu 12.04.3 (Precise Pangolin) 64 bits system, nothing happens: user@host:~/jd-gui-0.3.5.linux.i686$ ./jd-gui user@host:~/jd-gui-0.3.5.linux.i686$ How do I la...
Inconformity asked 10/1, 2014 at 13:59

2

Solved

I have tried both JadClipse and JD-Eclipse plugin but none seems to work every time I open a class file It says "Source not found". Both my *.class and *.class(without source) are by default set t...
Infidel asked 8/12, 2013 at 3:28

5

Solved

Consider this (IMHO simple) example: public class DecompilerTest { public static void main(String[] args) { Object s1 = "The", s2 = "answer"; doPrint((Object) "You should know:"); for (i...
Imprinting asked 15/5, 2010 at 13:1

1

Solved

I see that most of the Java decompilers support till Java 7. Are there any decompilers which support Java 8 - especially Lambda expressions? I want to run such a decompiler in my ubuntu m...
Hermineherminia asked 10/10, 2014 at 17:2

© 2022 - 2024 — McMap. All rights reserved.