Questions tagged [decompiler]

A decompiler performs, as far as possible, the reverse operation to that of a compiler.

That is, it translates a file containing information at a relatively low level of abstraction (usually designed to be computer readable rather than human readable) into a form having a higher level of abstraction (usually designed to be human readable).

The decompiler does not reconstruct the original source code, and its output is far less intelligible to a human than original source code.

Resources

614 questions
-1
votes
3 answers

Decompiled assembly code

I'm trying to put together C code from some decompiled assembly code and have a question. I see the following: SUB_L10195A01: ... call SUB_L1019CB90 db CCh; 'Œ' SUB_L10026990: push FFFFFFFFh push L101EA0C5 What is…
TomJeffries
  • 558
  • 1
  • 8
  • 25
-1
votes
1 answer

Get empty lua file when decompiling the luac file

I'm trying to decompile some .luac files unzipped from a game.And I tried some tools (unLuac & Luadec) but all of them gave me an empty .lua file with 0kb. Are these luac files encrypt or I just use the wrong version of tools? Can anyone help me to…
sherry
  • 1
  • 1
-1
votes
1 answer

Difference between Turbo C++ and Borland C++ compiler

I compiled two pieces of code using the Turbo C++ 3.0 and Borland C++ 5.02 compilers and came across some odd things. My two pieces of code are like these: First piece of code void main() { } Second piece of code #include #include…
dev-masih
  • 4,188
  • 3
  • 33
  • 55
-1
votes
1 answer

decompile the jar, some source code are marked as red(which means mistake)

Android Studio decompile the jar, some source code are marked as red which seems means there is mistacke,usually is cant resolve symol xxx This situation occurs in my android.jar and java jdk. I guess it is because decompile, so it is not pure…
Ray Lee
  • 1
  • 1
-1
votes
1 answer

How do I decompile a java class file?

I understand that similar questions to this have been asked, but non of them have answered how to decompile a java class with java. I want to make a java decompiler in java but I do not know how to take the contents of a class file and convert it…
Forseth11
  • 1,418
  • 1
  • 12
  • 21
-1
votes
1 answer

File is not a portable executable. DOS header does not contain 'MZ' signature

When i open a Assembly-CSharp.dll in NET Reflector 8.4 from Unity 3D games, it say that the DOS header does not contain 'MZ' Signature. i'm really sure it is C# language. most of Unity 3D games are decompile-able. Can someone help me? I just want to…
user3763113
-1
votes
1 answer

Decompiling my C# .exe with Red Gate reflector + Reflexil

I created a program in C# Visual Studio with framework 4.5, lost the project, but still have the .exe. I need a code within the .exe as I try to remake the project. So I opened the exe in the reflector with the reflexil 'add-in' and I still can't…
-1
votes
1 answer

About decompiler

i try to open .exe something (i think visual basic language) ex. Private Class JtoJyfwFywdp0oMhf7T82oYvUAlifLO1N3P64NAlifLO1N3P64NAT9q3iTiG85jA Private YWWmY1YGZHRJ1YWWmY1YGZHRJAcyz5jqj3lGWaAXJ0BrSt4pTmrAXJ0BrSt4pTm0 As String() Private…
-1
votes
1 answer

Getting source code from apk file for third party packages

how to decompile third party packages?? I have tried the decompilation of my own apk's..those are working fine... Can some one please tell me is there any way to do this??
Rahul
  • 1
  • 3
-1
votes
2 answers

understanding with decompiled java code

This is my first time experience of decompiling an apk to java code. The following code is of a local TVApp launcher which is ofcourse android based. To my surprise, I found out that the decompilers do not do a complete conversion to the source…
faizanjehangir
  • 2,771
  • 6
  • 45
  • 83
-1
votes
3 answers

Decompile class, amend and re-add to ear

I have an Ear file. I took a Java class file out, decompiled it and edited it. I now want to recompile the new Java source file and re-add the resulting class file to my new Ear. When I tried to recompile the new Java source file, the compiler…
TheCoder
  • 8,413
  • 15
  • 42
  • 54
-1
votes
1 answer

Unresolved compilation problems: No enclosing instance, Private method from the class is not visible, this$0 cannot be resolved

I have modified java code from jar and after doing compiled, the code I've written doesn't work. I try to decompile and I found the following error it is saying: Unresolved compilation problems: No enclosing instance of the type DirectDelivDetail…
-1
votes
1 answer

why jd-gui lost some info when decompile a .class file?

I have decompiled a class by jd-gui below, but I am unable to understand how the "linearLayout" is being initialized and why linearLayout.startAnimation(animationset) should be invoked, the LockScreen member "linearLayout" is not referred to any…
fla888
  • 67
  • 1
  • 8
-1
votes
1 answer

"Decompile" a file into raw binary code

I want to decompile files into (/read them as) raw binary code. I haven´t found anything about that. Is it even possible? It must be in order for the computer to run it, but some OS may not allow to read it. EDIT: Lets clear the answer. I want to…
AvidScifiReader
  • 279
  • 1
  • 3
  • 10
-2
votes
1 answer

TwoFer program Bug

I ran into a problem while writing the TwoFer program This is the program's code public static class TwoFer { public static string Speak() { return "One for you, one for me."; } public static Speak(string h) { …