3 repositorios
Tools for identifying and mitigating system-level memory corruption by analyzing heap management.
Distinct from Managed Memory Allocators: Candidates focus on the allocation strategies themselves, not the debugging and mitigation of memory corruption.
Explore 3 awesome GitHub repositories matching operating systems & systems programming · Memory Corruption Debugging. Refine with filters or upvote what's useful.
tbox is a multi-platform C standard library and toolkit designed for portable software development. It provides a core foundation for low-level system programming through a collection of system primitives, data structures, and memory management tools. The project includes a coroutine framework for cooperative multitasking and asynchronous logic, a data structure library featuring generic containers with a consistent iterator interface, and a memory management toolkit for pool allocation and debugging of heap overflows and leaks. It also provides a network and serialization toolset for handlin
Implements tools for detecting memory leaks, heap overflows, and use-after-free errors to ensure system stability.
KSCrash es una librería de informes de errores en C++ y framework de informes remotos diseñado para capturar bloqueos y señales de aplicaciones. Funciona como un reportero de errores asíncrono que atrapa excepciones y deadlocks para asegurar que los informes se generen durante fallos críticos. El sistema incluye una herramienta de diagnóstico de memoria para rastrear la presión de memoria e identificar objetos zombie para diagnosticar terminaciones relacionadas con la memoria. También cuenta con una herramienta de demangling de símbolos que convierte nombres de funciones de C++ y Swift en cadenas legibles para el análisis de stack traces. El proyecto proporciona monitoreo y observabilidad integrales mediante la captura de bloqueos de aplicaciones, detección de deadlocks en el hilo principal y monitoreo de señales del sistema. Los datos capturados se procesan a través de un pipeline que genera informes JSON estructurados, los cuales son enrutados y transmitidos a servidores remotos mediante un sistema de entrega basado en sinks. Se utiliza almacenamiento local para persistir informes y metadatos de la aplicación en el dispositivo hasta que se confirme la entrega.
Identifies memory corruption and zombie objects in C++ applications to resolve unstable behavior.
Seer is a graphical frontend for GDB that provides a visual interface for inspecting variables, managing breakpoints, and stepping through code. It functions as a low-level debugger visualizer with specialized tools for call stack inspection and register visualization. The project distinguishes itself by integrating low-level program analysis directly into the visual experience, featuring a synchronized assembly overlay that maps CPU registers and assembly instructions to source code lines. It also includes memory bug detection capabilities by randomizing the program starting address during t
Identifies memory corruption and unstable pointers by utilizing program start address randomization.