3 مستودعات
Tools that analyze and decompile bytecode across multiple Python versions with version-specific opcode handling.
Distinct from Python Reverse Engineering: Distinct from Python Reverse Engineering: specifically handles version-specific opcode dispatch across Python 1.0 through 3.13.
Explore 3 awesome GitHub repositories matching programming languages & runtimes · Multi-Version Bytecode Analyzers. Refine with filters or upvote what's useful.
CPython-Internals هو دليل تنفيذ تقني ومرجع لمفسر CPython. يوفر تحليلاً مفصلاً لكود مصدر C الداخلي والبنية، مع التركيز على المنطق الذي يحكم سلوك المفسر. يوثق المشروع نموذج كائن Python وخط أنابيب التجميع، متتبعاً العملية من القواعد النحوية الخام وأشجار بناء الجملة المجردة إلى bytecode القابل للتنفيذ. كما يعمل كمرجع لتطوير إضافات C، موضحاً كيفية التفاعل مع هياكل البيانات الداخلية واستخدام واجهة برمجة تطبيقات C. تغطي المادة إدارة الذاكرة، بما في ذلك عد المراجع وجمع القمامة الجيلي، بالإضافة إلى وظيفة قفل المفسر العام (GIL).
Analyzes the compilation pipeline and bytecode instructions across the CPython architecture.
python-uncompyle6 is a Python bytecode decompiler and reverse engineering tool designed to convert compiled bytecode files back into human-readable source code. It functions as a source code recoverer and bytecode disassembler, allowing for the analysis of internal program logic and the reconstruction of original language constructs. The tool provides cross-version support, enabling the analysis and recovery of source code from bytecode created across multiple different versions of the Python interpreter. This allows it to operate as a cross-version bytecode analyzer that can interpret varied
Analyzes and decompiles bytecode across multiple Python versions using version-specific opcode handling.
pycdc is a reverse engineering toolset that decompiles and disassembles compiled Python bytecode files back into readable source code. It parses .pyc file headers, reconstructs abstract syntax trees from bytecode instructions, and handles version-specific opcodes across Python versions 1.0 through 3.13 with endian-aware binary parsing. The tool recovers numeric constants, string literals, and marshalled Python objects from compiled bytecode, supporting both file-based and in-memory bytecode loading. It provides a human-readable disassembly listing of bytecode instructions alongside full sourc
Analyzing and decompiling bytecode across Python versions 1.0 through 3.13 with version-specific opcode handling.