Questions tagged [python]
General-purpose and high-level programming language. Python supports multiple programming paradigms, including object-oriented, imperative and functional programming styles.
233 questions
0 votes
0 answers
18 views
Is my flash dumped properly?
I am trying to dump a Macronix MX35LF1GE4AB NAND SPI flash chip. The way I do is via a custom pytohn script implemented upon: https://github.com/pc-magas/MX35LF1GE4AB_dump The core logic is to iterate ...
0 votes
1 answer
194 views
Installing python's labeless (needs protobuf) module and then linking it with x64dbg/x32dbg as a plugin
I am trying to install the labeless plugin for x64dbg (and IDA Pro) in Windows 11 (64 bit). I don't know why I am not succeeding. Perhaps packages are incomplete, because are too old (as tutorials [e....
0 votes
1 answer
367 views
What does "unpacks" mean in the phrase "Unpacks an 64-bit integer" in the context of pwntools function u64()?
Can somebody explain the unpacking/packing concept in this context? (Packing can mean different things in computing, like for example, compressing different numbers to make the most of the space in a ...
1 vote
0 answers
81 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
245 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
82 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
38 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
58 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
114 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
82 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
235 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
56 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
187 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
503 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
210 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 ...