Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
106 views

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 ...
Athwale's user avatar
  • 70
0 votes
0 answers
181 views

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'...
HESOYAM's user avatar
0 votes
0 answers
207 views

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, ...
Flippowitsch's user avatar
0 votes
0 answers
80 views

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 ...
Alex IsBack's user avatar
0 votes
1 answer
848 views

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 ...
user18107302's user avatar
0 votes
1 answer
214 views

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 ...
winscripter's user avatar
1 vote
0 answers
44 views

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 ...
Kostya Salo's user avatar
1 vote
0 answers
358 views

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 ...
winsett's user avatar
  • 109
0 votes
1 answer
105 views

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 ...
user24330571's user avatar
0 votes
0 answers
783 views

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-...
No Name's user avatar
  • 282
0 votes
0 answers
95 views

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 ...
Daniel's user avatar
  • 3,561
-1 votes
2 answers
204 views

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() { ...
RuthIsRoot's user avatar
0 votes
0 answers
1k views

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....
Лепко Ярослав's user avatar
0 votes
0 answers
128 views

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. ...
Regt Lu's user avatar
1 vote
1 answer
567 views

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 ...
Jorayen's user avatar
  • 1,981
3 votes
0 answers
886 views

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 ...
SOULSNP's user avatar
  • 31
0 votes
1 answer
831 views

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 ...
Esraa Coder's user avatar
0 votes
1 answer
37 views

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 = ...
Marco Balo's user avatar
0 votes
1 answer
4k views

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 ...
Pher0n's user avatar
  • 17
2 votes
0 answers
3k views

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 ...
user avatar
1 vote
0 answers
1k views

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\...
Neil Gupta's user avatar
0 votes
0 answers
160 views

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 ...
0exF2's user avatar
  • 1
1 vote
1 answer
2k views

#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; ...
sb99's user avatar
  • 27
-1 votes
1 answer
83 views

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 ...
Bob Shd's user avatar
  • 23
2 votes
1 answer
592 views

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....
Denis's user avatar
  • 3,757

1
2 3 4 5
22