Valgrind is a command line tool for debugging and profiling programs, mainly in C and C++, by detecting memory leaks, invalid memory access, and performance bottlenecks. This tutorial demonstrates how...
Position-Independent Executable (PIE) is a security feature that allows executables to be loaded at random memory addresses, enhancing security against certain types of attacks like buffer overflows. Non-PIE executables, on...
When analyzing binary files on a Linux system, you might need to extract human-readable text embedded within them. This can be useful for reverse engineering, debugging, or simply inspecting a...
The xan is a command line tool for processing CSV files. The tool offers a comprehensive set of operations for various CSV manipulations, including previewing, filtering, slicing, aggregating, sorting, and...
Binutils is a collection of low-level tools used for manipulating binary and object files on Linux systems. Binutils includes tools for assembling source code, linking object files, examining and modifying...
When working with binaries on Linux, especially for debugging, reverse engineering, or performance analysis, it's important to determine whether they contain symbol information. Symbols, such as function names, variable names...
When analyzing binary files on Linux, understanding whether a binary is statically or dynamically linked is crucial for debugging, performance optimization, and security auditing. This tutorial provides 2 methods how...
The GNU C Library, commonly known as glibc, is an open-source implementation of the standard C library. The glibc provides essential system functions that applications and binaries depend on. When...
Git tags are useful for marking specific points in the repository's history, such as releases. They act like milestones, allowing you to reference a particular commit easily. This tutorial demonstrates...
Tags in Git are references to specific commits, commonly used to specify release points (e.g., v1.0, v2.0) in the development process. If you're collaborating on a project or managing multiple...