Questions tagged [python]
General-purpose and high-level programming language. Python supports multiple programming paradigms, including object-oriented, imperative and functional programming styles.
231 questions
0
votes
0
answers
15
views
How can I recover Python code from a self-made Discord EXE tool?
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 ...
0
votes
0
answers
157
views
Bumble API reverse engineering
Trying to reverse-engineer the Bumble API using Postman with interceptor enabled. From what it seems like, Bumble uses cookie-based sessions to authenticate each request. I performed a process of ...
0
votes
0
answers
57
views
Byte code python 3.10.10
I’am dealing with challenge in my study but i didn’t find solution could anyone give me hint :
import re
import string
from types import CodeType
import random
banner = """
-----------...
0
votes
0
answers
29
views
Modifing pyinstaller executable strings
I'm trying to modify a string value in a Python executable that was compiled using PyInstaller.
I tried finding the string using hxd but i didnt find the string i wanted to change
but when I used ...
0
votes
0
answers
19
views
Ida Pro python disconnect debugger and imeddietly connect next one in same script
My current script for connecting to debugger is this, however if there's a debugger is already running then it gets disconnected, but new one does not start, have to run script second time to connect.
...
0
votes
0
answers
34
views
Trying to open the Sprite files from Cookie Shop DS with Python 3.x
I’m trying to rip all of the Cookie Shop DS character sprites by using Python. I already got pypng installed but I don’t understand saving as “cookie2png.py”, It’s too hard for me too do.
Can you help ...
0
votes
1
answer
61
views
Decompress NSIS Script Bytecode
In NSIS installers, there is a compiled bytecode blob representing the NSIS script located in the overlay of the executable. The overlay start with flags 0xdeadbeef then "NullsoftInst". The ...
0
votes
1
answer
60
views
Protection of the source code of an ML model
I wanted to know how it would be possible to run an ML model in an offline setting securely? What I mean is, if the Python files and libraries are bundled as an .exe file (using libraries like py2exe ...
0
votes
1
answer
60
views
Frida, Frida-tools, Android version Problems
I have this environment..
android : 9 version
python : 2.7.12
I am not sure which version of Frida and Frida-tools I need to use to be compatible.
I'm currently using 12.8.5, but an ascii codec ...
0
votes
0
answers
43
views
How to embed PE files to another PE files
So what I want to do basically is what BDFproxy does on the go, I want to modify a file (on the disk) to embed another PE in it and have both working, it does not matter if they work concurrently or ...
1
vote
1
answer
131
views
How to read from pointer in python?
I'm using cheat engine to find a multipointer that leads to an address that has value of list of entities. I found said multipointer, but I have no clue how to read it using python.
0
votes
1
answer
435
views
Unable to decompile .pyc file
There is a huge problem with decompiling pyinstaller exe file,I tired uncompyle6, uncompyle3, decompyle++. Always main section is not decompiled. I wonder what's the problem. The program is working.
...
0
votes
1
answer
144
views
IDA Pro Debugging GDB SendDbgCommand
I'm following this tutorial here https://www.triplefault.io/2017/07/loading-kernel-symbols-vmm-debugging.html to load kernel symbols with debugging.
Setting up the debug environment with IDA Pro using ...
0
votes
1
answer
255
views
Simple Question About Reversing a Python
So, detect it easy, shows that the .exe is a python 3.9 compiled on visual studio and the compiler was MS Visual C/C++. Trying to unpack it using pyinstxtractor fails, and shows me the error of
...
1
vote
1
answer
283
views
How to quickly mark functions library in IDA Pro?
I have a binary with debug information and I want to mark STL library functions with "Library function" tag as quick as possible, just by highlighting a range of functions and clicking some ...