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
-2
votes
1 answer

Try to change Printer of my old application windows fourm

I designed a Windows form application many years ago, and due to my lack of experience in programming and not following some professional programming tips to debug it, also I have lost the project source code. I know I had statically defined the…
Rasool Aghajani
  • 340
  • 2
  • 10
-2
votes
2 answers

how to secure an excel file so that the form and code is secure against copying?

I have an Excel file that has a form and macros. I will give this Excel file to users. However, the form and the code must be protected against copying. I thought to break the Excel macros into DLL so that the VBA code can not be recovered. Would…
-2
votes
1 answer

How to know about all the files which are compiled together to make an executable?

We are looking for an procedure through which we can easily list down all the file which are compiled together to make an executable. Use Case : Suppose, We have large repository and we want to know what all are the files existing in repository…
M Gem
  • 1
  • 3
-2
votes
1 answer

Emulating Android Drone Control App On Windows

I recently purchased a Yuneec Breeze quad-copter drone that uses an Android and iOS app with its own WiFi connection as a controller. I am looking to write a Java application that performs the functions of the Android app with Game Controller…
-2
votes
1 answer

.Net 1.1 decompile tool

I am trying to decompile one of our old source codes which had been developed in .Net 1.1. I have tried couple of different decompiler tools but none of them were able to give me a good result which I can compile them. usually there are parts of…
Ehsan
  • 1
  • 1
-2
votes
2 answers

how to decompile a .apk without errors?

I tried the apktool, and even the online version, http://www.decompileandroid.com/ But still can't get something that works in eclipse. I want to decompile an app called bucket drops, which was made as part of an android course. I want to look at…
Ahmad Hamdy
  • 15
  • 1
  • 6
-2
votes
1 answer

switch does nothing on Decompiled Android Source

switch(paramMotionEvent.getAction()) { } do { for(;;) { return super.onInterceptTouchEvent(paramMotionEvent); this.prevX = MotionEvent.obtain(paramMotionEvent).getX(); } }while(Math.abs(paramMotionEvent.getX() - this.prevX)…
whiteUnicorn
  • 73
  • 1
  • 5
-2
votes
1 answer

Github accidental sync

I'm a newbie to programming, having just taken AP computer science, and not experienced with Github. I was asked to make a github, so I made one and synced all my changes there. I made a few changes, then tried to sync them. I opened github, and…
Bla1
  • 3
  • 3
-2
votes
1 answer

Decompile *.pyc file

I'm a newcomer to programming, and currently taking a course on MIT OCW, using Python 2.6. The site provides me with a .pyc file, and I wonder if it can be decompiled back to a .py file. I have researched some ways on the Internet, such as this: Is…
npvinhphat
  • 33
  • 1
  • 1
  • 4
-2
votes
1 answer

How to make a Java decompiler?

As a project at some point in time, I would like to make my own Java decompiler to convert bytecodes back to plain text. I did Google for some APIs that would let me do that but I could not find any. So my question to you is: How do I decompile…
An SO User
  • 24,612
  • 35
  • 133
  • 221
-2
votes
1 answer

How to make class files undisassemblable

Say that I write a JAVA program and I create the JAR file. How can I make it so that if someone extracts the class files from the JAR, he cannot disassemble it? If you use DJ JAVA Decompiler for example you should see an error message "You cannot…
user1853200
  • 675
  • 1
  • 5
  • 4
-2
votes
2 answers

Undecompilable Python

It is possible to decompile .pyc files: Decompile Python 2.7 .pyc Is it possible to `compile` python files so there is a human-unreadable code, like the c++ -> exe binary file? ..unlike the plaintext .py and very easily recoverable .pyc files? (I…
Qwerty
  • 29,062
  • 22
  • 108
  • 136
-2
votes
2 answers

Decompile .swf, but no code is shown! help please

Spent two weeks creating a flash presentation hundreds of photos and the file became corrupted when Nero 7 crashed :( and my pc restarted. A quick seach told me of some decompilers (showmycode.com) could save the file... but it shows me not one…
Ron Peyce
  • 1
  • 1
-2
votes
2 answers

Python: decompile exe

I have a small project compiled as an exe and heard that you can decompile python projects. I have downloaded uncompyle2 but am unfamiliar how to install and use it on the exe. Any help or tutorial links would be good. I am new to python so go…
George Veron
  • 35
  • 1
  • 6
-3
votes
2 answers
1 2 3
40
41