obfucation
2025-04-14
Read More
t0rn rootkit
2025-04-14
The t0rn rootkit is a binary replacement rootkit for Linux by J0hnny7 that infects hosts by replacing system utilities such as find, ls, ps, pstree, ... Read More
.data section
2025-04-13
The .data section of an executable file contains initialized global and static variables that can be modified at runtime. Read More
.text section
2025-04-13
the .text section of an executable file (such as ELF or PE) is where the actual program code (machine instructions) lives. Read More
0x08048000
2025-04-13
0x08048000 is a historically common base virtual address for the text section of 32-bit Linux ELF binaries. Read More
address space
2025-04-13
An address space is the range of memory addresses that a process or system can use to access memory. Read More
AMSAT
2025-04-13
The Radio Amateur Satellite Corporation (AMSAT) is an organization dedicated to foster amateur radio participation with space research and ... Read More
argc
2025-04-13
in C and C++ programs argc is the number of command line arguments passed to the main function, including the program’s name. Read More
breakpoint
2025-04-13
A breakpoint is a designated spot in a program where execution is intentionally paused, allowing a debugger to inspect the state of a program. Read More
bss section
2025-04-13
The .bss (Block Started by Symbol) section in an executable file stores uninitialized global and static variables. Read More