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 ऑब्जेक्ट मॉडल और संकलन पाइपलाइन का दस्तावेजीकरण करता है, जो रॉ ग्रामर और एब्सट्रैक्ट सिंटैक्स ट्री से निष्पादन योग्य बाइटकोड तक की प्रक्रिया को ट्रैक करता है। यह C एक्सटेंशन डेवलपमेंट के लिए एक रेफरेंस के रूप में भी कार्य करता है, जो यह बताता है कि आंतरिक डेटा संरचनाओं के साथ इंटरफेस कैसे करें और C API का उपयोग कैसे करें। सामग्री में मेमोरी मैनेजमेंट शामिल है, जिसमें रेफरेंस काउंटिंग और जेनरेशनल गार्बेज कलेक्शन, साथ ही ग्लोबल इंटरप्रेटर लॉक का कार्य शामिल है।
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.