1,074 questions
0
votes
1
answer
106
views
Why are some Android APKs JAR archives and some are ZIP?
I am trying to modify Settings.apk of an Android 11 device to get rid of embedded suspicious likely malware URL in the code in order to disable potential control server communication.
The original ...
0
votes
0
answers
181
views
Compiling .vmap_c to .vmap (cs2 map)
I want to decompile .vmap_C file to .vmap in order to use it in Tree.js as vmap_c can't be used in Tree.js and also i don't have any alternative formats like .bsp
I tried to use GCFScape but it doesn'...
0
votes
0
answers
207
views
Decompilation of Blazor Wasm PWA
Please excuse the long text, but I already tested much and want to share the results.
I am currently looking for an obfuscator for my Blazor Wasm PWA with ahead-of-time-compilation enabled. But first, ...
0
votes
0
answers
80
views
Getting the dependencies of a compiled .jar
I have a java jar and I've decompiled it. Inside the pom.xml there are a lot of dependecies used in local, that is, they use the system and a scopePath that is the project's.
I need to take the jars ...
0
votes
1
answer
848
views
Which is the path of the libapp.so in flutter apps?
I'm trying to decompile my own app, build in flutter; as I read here What are libapp.so and libflutter.so? my code should be in libapp.so, but I can't find it, only libflutter.so is present. Is there ...
0
votes
1
answer
214
views
How does the C# compiler produce this long "ID" in file local types?
Given the following 3 file classes:
file class MyClass
{
}
file class MyClass2
{
}
file class MyClass3
{
public int MyMember { get; init; }
}
By decompiling this C# code, the file classes now ...
1
vote
0
answers
44
views
Unity Editor just freezes when completing script
IDK, but when i am trying to start my script, unity editor just freezes (but responding!), but theres no warnings, errors, or anything.
Heres a part of code, that i changed:
public partial class ...
1
vote
0
answers
358
views
Automation of decompilation of files using dotPeek?
I use dotPeek for decompilation of dll-s which are automatically generated by a software. For some tests I need the classes inside these dll-s and for this reason I found that dotPeek could generate a ...
0
votes
1
answer
105
views
trouble decompiling apk
I have been trying to find the code of this game called House of the Lost for a long time. It is for a platform called the Ouya. I believe it was made using corona sdk. Also if you do manage to do it ...
0
votes
0
answers
783
views
Trouble reversing a .pyc file back to its source code
I have an EXE compiled using cx_Freeze, and the answer here pointed me to decompyle3 after getting the .pyc file:
https://reverseengineering.stackexchange.com/questions/26257/how-to-reverse-engineer-...
0
votes
0
answers
95
views
IDA Free and _time64 decompilation?
I'm trying to understand this line specifically: now_int = time64(0);
Reading the docs for time, _time32, _time64, time64() accepts a pointer or NULL and should return a __time64_t type.
In the ...
-1
votes
2
answers
204
views
Avoid exposing DB credentials when decompiling .exe
I was just testing a DB connection on a C# project I'm working on. I was wondering if there is any protection to my credentials being exposed to a possible decompiling.
public int connect_DB()
{
...
0
votes
0
answers
1k
views
i have installed pydumpck but get "'pydumpck' is not recognized as an internal or external command, operable program or batch file."
I have installed pydumpck with pip install pydumpck, but when I try to call pydumpck command I get "'pydumpck' is not recognized as an internal or external command, operable program or batch file....
0
votes
0
answers
128
views
Garbled characters encountered when decompiling Lua
The lua file was from an apk using luajava and andlua, lua version seems to be 5.3.3
After I used unluac to decompile and obtain the lua file, I found that all the strings became garbled characters.
...
1
vote
1
answer
567
views
Decompiling ARM64 and understanding branch targets bounderies
When decompiling code from arm64, how can one know if an unconditional branch instruction b is a branch to a label in the same function and not to some other function?
How do state of the art ...
3
votes
0
answers
886
views
Decompilation error for IDA8.3 lumina SERVER
lumina: connect: connection failed because the destination computer denied the connection.
142089810: cloud: Server is not available
I cleaned up the registry and reinstalled it.
Does anyone know ...
0
votes
1
answer
831
views
Error in magic number when converting pyc python code to py source code
I tried to use a tool called easy python decompile and websites to convert pyc python code to source (.py) again, but I have got an error in magic number.
Also, I tried the following commands using ...
0
votes
1
answer
37
views
Jadx Assert.notNull view full parameters
I noticed that in many methods of many android applications, Jadx decompile some code (probably something containing callbacks) in the following way
...
final i iVar = new i();
Observable g2 = ...
0
votes
1
answer
4k
views
How to decompyle exe to py which compiled by Nuitka
I used:
nuitka --standalone script.py
After this command I got folder with exe file and another files, as in pyinstaller
The problem is that when creating an exe through pyinstaller, you can get back ...
2
votes
0
answers
3k
views
DnSpy fails to decompile self-contained single file produced C# .exe
I have created a simple project written in C# using Visual Studio 2022 (.NET Core 6.0) and have published my project to a folder in a single file, self contained form in order for the produced .exe to ...
1
vote
0
answers
1k
views
ImportError when using PyInstaller: Cannot import 'get_archive' from 'PyInstaller.utils.cliutils.archive_viewer'
ImportError: cannot import name 'get_archive' from 'PyInstaller.utils.cliutils.archive_viewer' (C:\Users\NEILG\AppData\Local\Programs\Python\Python311\Lib\site-packages\PyInstaller\utils\cliutils\...
0
votes
0
answers
160
views
Cannot create AVD via Android Studio - VT-x or SVM issue
I've recently installed Android Studio Flamingo on a Debian based distribution for reverse engineering purposes. However, when I attempt to boot up a mock device through AVD it gave me back a dialog ...
1
vote
1
answer
2k
views
x86 ASM using Ghidra, understanding decompiler results for an inlined function call
#include <iostream>
int addition(int a, int b) {
int funcA = a;
int funcB = b;
return funcA + funcB;
};
int main() {
volatile int count1 = 8;
volatile int count2 = 9;
...
-1
votes
1
answer
83
views
"Cannot find extension method" error occurs when decompiling C# assembly
Because of the needs of the project, I need to decompile the C# assembly.
Using Relector on the recommendation of a colleague
Here is an example:
internal class WebTreeDialogPage : WebXmlHttp2Page
...
2
votes
1
answer
592
views
How to get JIT output for C# applications on Linux?
Let's say, we have a server with Ubuntu 22.04 and ARM64 architecture. Also, we have the latest dotnet:
$ dotnet --version
7.0.102
I want to view JIT assembly output for a program, for example:
C....