1. Simple execve template

    2022-10-13 By qld

    A single challenge tonight, busy day. This one went easier than expected, no fiddling with offsets or planting binaries. Have I shown you that piece of code I got ready just in case, thanks to man execve ?

    /* execve.c */
    
    #include <stdio.h>
    #include <stdlib.h>
    #include <unistd.h>
    
    int
    main …
    read more

Page 1 / 1