All Questions
4 questions
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
634
views
Decompiling exe to python source code
I've recently tried to decompile a .exe to .py source code. It partly went well as the majority of the .pyc got translated into python code but partly also failed. Like the following part:
--- This ...
1
vote
1
answer
6k
views
Decompiling Python Files: ValueError
So I have this python file and I successfully unpacked its content inside of it we have our file.pyc
I appended the magic bytes to it so it went from:
E3 00 00 00 00 00 00 00 00 00 00 00 00
to ...
1
vote
2
answers
3k
views
How to decompile python 2.4 bytecode?
I need a good decompiler that can decompile python 2.4 byte code. I have looked over the internet and can only find python 2.5+
There are about a few hundred .pycs, so if it can decompile a directory ...