OS: Parrot OS x64 Stack5.c: #include <stdlib.h> #include <unistd.h> #include <stdio.h> #include <string.h> int main(int argc, char **argv) { char buffer[64]; gets(buffer); } Build file: gcc -fno-stack-protector -z execstack -Wl,-z,norelro -o stack5 stack5.c Checksec: Analasis: This is a simple task, x64 No protection (you can add more if you like :v)Execute /bin/sh Review main code:ContinueContinue reading “Protostar stack5 – Shellcode with stack overflows”