1,074 questions
0
votes
1
answer
103
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 ...
1
vote
0
answers
49
views
What does it mean when a class in Android Studio appears in italics in the dex file?
This might be a simple question, I'm not that used to working with Android, when I open the apk file of any app some classes and folders appear like this, those same classes and folders disappear when ...
0
votes
0
answers
178
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'...
-2
votes
1
answer
128
views
How to comment an obsolete else-case? [closed]
In C#, I have the following piece of source code:
if (condition)
{
action_1();
}
else
{
action_2();
}
action_3();
This clearly means that:
condition is true => perform action_1.
condition ...
0
votes
0
answers
197
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
38
views
Is it possible for me to recompile an dumped PEI file from an executable?
Look, I am trying to decompile an exe from a game, seeing how far I could get trying to port an somewhat abandonware game to linux. Obviously first step was to decompile it. I jumped from decompiler ...
0
votes
0
answers
79
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
106
views
Can't repoduce call stack in one of my programs [duplicate]
I'm encountering an issue while working with my application. I suspect that the version running in production might not be fully aligned with the version in my repository, but I'm not entirely sure.
...
0
votes
1
answer
825
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
263
views
VS2022: Watch contents of managed variable in the watch when only knowing its actual address
I've got a (legally) decompiled C# code. Variables shown in that code cannot be queried from the watch (Visual Studio). Debugging dually with the disassembly pane, I came across the address of the ...
0
votes
1
answer
207
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 ...
4
votes
1
answer
318
views
Is there any way to retrieve back the source code from unstripped binary in Linux?
I was working on some C++ source code, unexpectedly I deleted the source code. But still I have my unstripped binary. Is there any way that I can retrieve my source code from the unstripped binary.
I ...
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 ...
2
votes
0
answers
219
views
Decompiling Lua Issue
I'm working with the game GeminiLost from playfirst, they have an assets.pfp file that can be extracted using a BMS Script
After extraction it is possible to see lua scripts that were compiled using ...
1
vote
0
answers
347
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 ...