Cheat Sheet :: Tmux Mar 25, 2021 Working with Sessions New Session Start a New Session ...
Cheat Sheet :: Linux Shell Tricks Jun 16, 2020 To find the corresponding hex code echo -n "&" | hexdump -C How to redirect standard error in bash nixCraft Article ...
Cheat Sheet :: Privilege Escalation Jun 16, 2020 Using scripts to enum the machine https://github.com/rebootuser/LinEnum https://github. ...
HowTo :: Patching binary files in Linux Jan 14, 2019 Using xxd Binary to Hex $ xxd prog1.bin > b1.hex $ xxd prog1. ...
Article :: Debugging with strace Jan 13, 2019 Preface Strace is a debugging tool that help us to troubleshoot issues. ...
HowTo :: Install PyEnv Jan 4, 2019 Installing Dependencies sudo apt install -y make build-essential libssl-dev \ zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev \ wget curl llvm libncurses5-dev libncursesw5-dev \ xz-utils tk-dev libffi-dev liblzma-dev python-openssl Installing PyEnv curl -L https://github. ...
Article :: Using the Linux Syscalls in Assembly Dec 28, 2018 Preface In this post we’ll see how a process running in the userland can invoke syscalls to run system commands. ...
Article :: Getting Started with GDB Dec 16, 2018 Preface Before start, take a look at GCC Compiling Cheat Sheet. ...
Cheat Sheet :: GCC Compiling Cheat Sheet Dec 16, 2018 Static compiling gcc -static cve_2016_0728.c -o cve_2016_0728 -lkeyutils -Wall Cross compiling a C code from Linux to Windows Install mingw-w64 cross-compiler: apt-get install mingw-w64 To compile a Windows PE Executable 32bit: i686-w64-mingw32-gcc 271. ...
HowTo :: Install GEF (GDB Plug-in) Dec 16, 2018 Cloning Goto GEF Project and clone the repository to /opt ...