bash git clone https://github.com/theori-io/copy-fail-CVE-2026-31431.git cd copy-fail-CVE-2026-31431 Create virtual environment python3 -m venv venv source venv/bin/activate Install Python dependencies pip install -r requirements.txt bash make or gcc -o helper helper.c -lpthread copy-fail-CVE-2026-31431/ ├── exploit.py # Main exploit entry point ├── exploit/ │ ├── init .py │ ├── core.py # Core exploit logic │ ├── primitives.py # Kernel read/write primitives │ ├── spray.py # Heap spray utilities │ └── utils.py # Helper utilities ├── helper.c # Native C helper (compiled separately) ├── requirem…