Skip to main content

Questions tagged [decompilation]

Process of translating assembly code extracted from a binary file in a structured programming language, such as C.

Filter by
Sorted by
Tagged with
0 votes
2 answers
95 views

I'm working on a decompiler for a language for which I only have the bytecode. I have this graph (and several others with similar patterns) for which I can't seem to figure out the actual pseudo-code ...
DeepQuantum's user avatar
0 votes
0 answers
202 views

I'm currently creating a private server for a game that closed almost a year ago, and I'm stuck at a point where my server has to respond to the game to populate the server list. The problem is that I ...
Skipper57's user avatar
0 votes
0 answers
57 views

I have some object code produced by a Fortran compiler, which claims to be optimizing, for a legacy mainframe platform. I am trying to figure out the source code which would compile to the same object ...
Leo B.'s user avatar
  • 235
0 votes
0 answers
114 views

so I'm trying to extract assets like sounds and images out of a game called Road To Valor: WW2. I pulled the apks and eventually got to a file called resourcemain. I set its extension to bundle and ...
Frostyy's user avatar
0 votes
1 answer
525 views

I'm trying to reverse engineer an old Unity game for Android that was built with IL2CPP. I have access to the APK, including libil2cpp.so and global-metadata.dat. My goal is to recover the original C# ...
Dima Kritchenko's user avatar
0 votes
0 answers
53 views

I am trying to make some changes to a navigation app for personal purposes to test some things for a project I am working. I downloaded the APK, and I was able to decompile it with apktools, make ...
Nikolaos Beratlis's user avatar
0 votes
0 answers
87 views

I like a demo from a demoscene site called pouet.net, i want the source code of that file. i try to unpack the demo exe file with upx but it cannot unpack with it, because it is packed with so called ...
smallbee's user avatar
  • 101
1 vote
0 answers
95 views

A while ago I created a Discord nuker tool using Python. Later, I converted it into an EXE file (for personal use only), and unfortunately I lost the original .py source files. Now I need to recover ...
xSH36AN's user avatar
  • 11
0 votes
0 answers
77 views

i have only the .exe and not the source code.i know "GO LANG " was used to compile file! . I NEED the source code only because i will add the cloudflare captcha code needed the get ...
fabio riccio's user avatar
1 vote
1 answer
238 views

In pseudocode view (after pressing Tab on assembly code), I can only see one current decompiled function. I can decompile and go to other functions (by double clicking on them) that are called from ...
ibse's user avatar
  • 111
1 vote
1 answer
203 views

This function decrypts an array of bytes to the string "crackmeYG": +0x1610 int64_t sub_7ff7c8a11610(int64_t arg1, int128_t* arg2) +0x1610 { +0x1634 void var_1c8; +0x1634 ...
Removed Name's user avatar
1 vote
0 answers
89 views

I have a new client who wants to move their GIS platform support to a new vendor. The only problem is the outgoing vendor of 15 years does not want to release the source code. My client made a ...
Josh's user avatar
  • 11
1 vote
2 answers
189 views

I decompiled a 16-bit Windows 3.1 program with Ghidra 11.0.3 and part of it looks like this: if ((uVar6 = local_8 + local_a + 0xa46b, uVar6 + local_10 == -0xded && ((uint)CARRY2(local_8,...
Alex Henrie's user avatar
3 votes
1 answer
141 views

I know it's generally impractical to decompile programs written in C/C++ and the like because most non-essential information is lost during the translation to machine code. Any decompiled code would ...
Danny's user avatar
  • 133
1 vote
2 answers
281 views

I have to extract a flag from a test.exe file. The respective flag is run as an argument for the test.exe file => "test.exe FlagName" and in this way I will reach the next flag. I managed ...
RandomUser's user avatar

15 30 50 per page
1
2 3 4 5
41