awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 مستودعات

Awesome GitHub RepositoriesLive Process Code Injection

Inserting and executing binary code within the address space of a running process.

Distinct from Process Address Space Analysis: Candidates focus on address space analysis or allocation, not the active injection and execution of code blobs.

Explore 2 awesome GitHub repositories matching operating systems & systems programming · Live Process Code Injection. Refine with filters or upvote what's useful.

Awesome Live Process Code Injection GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • jmpews/dobbyالصورة الرمزية لـ jmpews

    jmpews/Dobby

    4,754عرض على GitHub↗

    Dobby is a dynamic function hooking framework and binary instrumentation tool designed to intercept and redirect function calls in compiled binaries. It serves as a cross-platform and cross-architecture library that provides a unified interface for modifying program execution flow across different operating systems and CPU architectures. The library enables low-level binary instrumentation and runtime application instrumentation by injecting custom handlers into live processes. It is used for software reverse engineering to observe real-time data flow and logic by hooking internal functions.

    Injects custom logic into process memory while maintaining correct relative addresses for execution.

    C++hookhook-framework
    عرض على GitHub↗4,754
  • checkpoint-restore/criuالصورة الرمزية لـ checkpoint-restore

    checkpoint-restore/criu

    3,697عرض على GitHub↗

    CRIU is a Linux process checkpointing tool and state manager used to freeze running applications and save their memory and state to disk for later restoration. It functions as a container migration engine and an OCI checkpoint image converter, allowing the live state of running containers to be transferred between different hosts. The project distinguishes itself through its ability to persist network connectivity, acting as a TCP connection state persister that saves and reconstructs network socket states to maintain active communication after a restart. It further enables the distribution o

    Inserts and executes binary blobs within live processes to extract internal state without termination.

    Cblcrcheckpointcontainer
    عرض على GitHub↗3,697
  1. Home
  2. Operating Systems & Systems Programming
  3. Live Process Code Injection

استكشف الوسوم الفرعية

  • Relocatable Code InjectionsInserts binary code into a running process while preserving relative address correctness for jumps and calls. **Distinct from Live Process Code Injection:** Focuses on maintaining relative addressing (relocatability) during injection, rather than just the act of injecting binary code.