awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 repositorios

Awesome GitHub RepositoriesProcess Injection Payloads

Techniques for inserting shellcode into a running process's address space to hijack or extend behavior.

Distinct from Shellcode Generators: Distinct from Shellcode Generators: focuses on the injection mechanism into a target process rather than generating the payload itself.

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

Awesome Process Injection Payloads GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • balloonwj/cppguideAvatar de balloonwj

    balloonwj/CppGuide

    6,030Ver en GitHub↗

    CppGuide is a curated collection of educational resources and practical guides focused on C++ server development, Linux kernel internals, concurrent programming, network protocols, and security exploitation. It provides structured learning paths for backend developers, covering everything from interview preparation to building high-performance network servers and understanding operating system fundamentals. The guide distinguishes itself by offering in-depth, hands-on tutorials that walk through real-world implementations, including building a Redis-like server from scratch, designing custom

    Provides tutorials on injecting shellcode into running processes, a core security exploitation capability.

    Ver en GitHub↗6,030
  • ne0nd0g/merlinAvatar de Ne0nd0g

    Ne0nd0g/merlin

    5,555Ver en GitHub↗

    Merlin is a cross-platform command and control framework and remote access tool. It provides a server and agent system for post-exploitation coordination, utilizing an HTTP/2 framework for secure communication and the execution of commands across multiple operating systems. The project features an in-memory code execution engine that runs assemblies and shellcode directly within a process to avoid writing files to disk. It implements a decentralized communication architecture through a peer-to-peer network, allowing agents to exchange data via direct bind or reverse connections. To evade det

    Implements shellcode execution via asynchronous procedure calls to evade detection.

    Go
    Ver en GitHub↗5,555
  • thewover/donutAvatar de TheWover

    TheWover/donut

    4,461Ver en GitHub↗

    Donut is a toolset for loading and executing payloads in memory, featuring a position-independent shellcode generator, an in-memory payload injector, and a .NET assembly loader. It is designed to convert executable files and scripts into shellcode that can be executed within the memory space of a remote process without writing files to disk. The project specializes in security evasion through memory-based patching and payload obfuscation using symmetric block ciphers and compression. It includes a remote payload stager to retrieve encrypted modules from HTTP or DNS servers during runtime, red

    Loads generated shellcode into a target process to execute a .NET assembly entirely from memory.

    C
    Ver en GitHub↗4,461
  • byt3bl33d3r/offensivenimAvatar de byt3bl33d3r

    byt3bl33d3r/OffensiveNim

    3,033Ver en GitHub↗

    OffensiveNim is a red teaming framework and post-exploitation toolkit developed in Nim. It provides a collection of low-level primitives and a Windows API wrapper designed for offensive security operations, including malware development and shellcode loading. The project focuses on evasion and obfuscation through techniques such as API unhooking, direct system calls, and anti-debugging mechanisms. It features diverse payload delivery methods, including reflective binary loading, the execution of .NET assemblies via CLR hosting, and various shellcode injection techniques using fibers, COM obje

    Provides the ability to allocate executable memory and inject shellcode into the current process.

    Nim
    Ver en GitHub↗3,033
  • trickster0/offensiverustAvatar de trickster0

    trickster0/OffensiveRust

    2,984Ver en GitHub↗

    OffensiveRust is a red team toolkit and malware development kit written in Rust. It serves as an evasion framework and post-exploitation library, providing a collection of offensive security primitives and a Windows API wrapper for interacting with low-level system functions and undocumented APIs. The project focuses on bypassing security software through direct system calls, memory obfuscation, and stealthy payload execution. It implements techniques to defeat static binary analysis via compile-time string encryption and payload obfuscation, while avoiding detection using parent process ID s

    Executes encrypted payloads by decrypting them with AES and queuing an asynchronous procedure call.

    Rust
    Ver en GitHub↗2,984
  • oddcod3/phantom-evasionAvatar de oddcod3

    oddcod3/Phantom-Evasion

    1,449Ver en GitHub↗

    Phantom-Evasion es un framework de investigación de seguridad diseñado para generar payloads ofuscados y automatizar tareas de post-explotación durante evaluaciones de seguridad autorizadas. Proporciona un conjunto de utilidades para crear ejecutables y bibliotecas personalizados destinados a probar la eficacia de los sistemas de detección de antivirus y seguridad de endpoints. El framework destaca por su enfoque en operaciones residentes en memoria, permitiendo la ejecución de binarios cifrados y shellcode directamente dentro de la memoria del sistema. Al utilizar técnicas como la inyección de código basura, el cifrado de payloads y la obtención remota de recursos, minimiza la huella forense en una máquina objetivo y evita la dependencia del almacenamiento en disco. Más allá de la generación de payloads, la herramienta incluye capacidades para mantener el acceso al sistema a largo plazo mediante la configuración de claves de registro, tareas programadas y servicios en segundo plano. También admite operaciones sigilosas inyectando shellcode en procesos legítimos del sistema y automatizando tareas administrativas, como la gestión de controladores de registro de seguridad y la memoria de procesos, para facilitar escenarios de pruebas de penetración controladas.

    Performs process shellcode injection by executing custom shellcode within local or remote processes using memory allocation and execution techniques.

    Pythonantivirusapkinjectiondynamic-analysis
    Ver en GitHub↗1,449
  1. Home
  2. Operating Systems & Systems Programming
  3. Assembly Injection Interfaces
  4. Shellcode Generators
  5. Process Injection Payloads

Explorar subetiquetas

  • APC-Based InjectionExecuting code by queuing asynchronous procedure calls in a target process. **Distinct from Callback-Based Injection:** Distinct from Callback-Based Injection by using the APC queue mechanism specifically rather than general API callbacks.
  • Callback-Based InjectionInjecting code by leveraging system APIs that accept callback functions to trigger execution. **Distinct from Process Injection Payloads:** Focuses on the specific vector of using API callbacks to execute shellcode, rather than generic address space injection.
  • Encrypted Shellcode InjectionThe process of decrypting an encrypted payload in memory before injecting and executing it. **Distinct from Process Injection Payloads:** Specifically covers the decryption-then-injection workflow to evade static analysis, as opposed to general shellcode insertion.
  • Local Shellcode ExecutionExecuting raw byte arrays within the current process by casting buffers to function pointers. **Distinct from Process Injection Payloads:** Distinct from Process Injection Payloads: focuses on executing code within the same process rather than injecting into a remote one.
  • Process EnumerationsListing running processes and their properties to help select a suitable host for shellcode injection. **Distinct from Process Injection Payloads:** Distinct from Process Injection Payloads: focuses on enumerating target processes rather than the injection mechanism itself.
  • Window-Based Process InjectionInjecting payloads into remote processes by manipulating memory associated with system window elements. **Distinct from Process Injection Payloads:** Focuses on using the taskbar/window memory as an injection vector rather than general process address space injection.