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

Security Analysis for Android app APK

I am working on a project where I am asked to manually conduct security analysis on android app APKs, such as Misuse of Phone Identifiers, Exposure of Physical Location ...ect. The burden lies in the fact that I don't know how to go about it. I know…
EnTaim
  • 23
  • 1
  • 4
-3
votes
1 answer

How to configure Mocha and Crema for Java obfuscation?

I want to protect my class files from decompiling. After searching the internet the most two common names I found are Mocha and Crema. Can anyone guide me to configure them on Windows?
Abhinab Kanrar
  • 1,532
  • 2
  • 20
  • 46
-3
votes
1 answer

Why does this python script run out of memory?

I know next to nothing about Python, so I've come here to ask you all how to change this. I will provide fragments of files, which should be all you need to solve this. main.py - does all the logging, gets everything done commands.logger.info('>…
QuaternionsRock
  • 832
  • 7
  • 14
-4
votes
1 answer

I have uncompiled some assembly code. What does it do?

This is the code generated by IDA Pro. What is it doing? I am having difficult trying to understand what it's trying to do. The variables are weirdly named as they have been generated by the decompiler. int __cdecl main(int argc, const char **argv,…
-4
votes
1 answer

Android-how to supply open android camera permission by decoding and decompiling apk file

hi i create a apk file by turning wordpress website to mobile app using various wordpress plugin.wordpress website provide real time web conference. when ı convert wordpress site to mobile apk, android camera didnt open althougth in preview of…
-4
votes
1 answer

Decompile an apk file

How decompile an apk file and edit it and recompile it again??
-4
votes
1 answer

Tools to Convert C# to Managed C++

I have a few .NET portable libraries written in C# which I need to port to Qt (C++). Since many of the classes don't really depend on .NET framework classes to a large extent, I thought it would be good strategy to use a tool to convert the C# code…
DarthCorder
  • 43
  • 2
  • 6
-4
votes
1 answer

Whether it Library org.garret.prest?

I discovered this when decompiler an application, no one knows what it's kind of a Library? I found it in an Android app, because I want to look to try the library
-4
votes
1 answer

protect net 2 code (dll / exe) with a freeware from reverse engineering

I compiled my program / DLL to NET 2 Code knowing the fact that everyone who gets the executable has also automatically access to my source code if this person uses a (.NET) decompiler. So I ask myself how to hinder someone from seeing all my code…
feedwall
  • 1,473
  • 7
  • 28
  • 48
-5
votes
1 answer

Source code from .bin arm processor application to C++ for Arm

I have application .BIN that is used in Arm processor, I want to get the source file back to C source code, because i lost the source files but I still have .bin . The .bin file created using arm -elf -GCC or arm-elf-g++ to create, I want it to…
-5
votes
1 answer

Decompile protected C#

I have a C# program and i want to decompile it, i used [ILSpy & NetReflector] and everything worked fine the program was decompiled but the source was encrypted or protected in a way because all the .cs file doesn't content the exact code that i…
ASSAYYED
  • 3
  • 2
-6
votes
2 answers

How to decompile a Java program successfully?

A Java program works is decompiled by JD-GUI as follows. Looks like some Classes are missed. Is there a best way to decompile a Java program without red lines appearing? ImportTaskTransactionCallback tc = new…
skyline
  • 443
  • 9
  • 31
-7
votes
1 answer

Decompile qt exe

I have an EXE file made by qt framework, I think it's written in C++ language but I'm not sure. I want to decompile the file, I tried more than 5 software but there is no one can display C++ code as well, so I need any software to help me to read…
-9
votes
1 answer

how can i modify package name of decompiled apk?

I have decompiled a voip calling apk file with Apktool and i tried to change itz package name... But i getting error that unfortunately app stopped`... What i did that search the package name inside the all files (root dir)and replace every…
1 2 3
40
41