Skip to content

Instantly share code, notes, and snippets.

View CaptainBoggle's full-sized avatar
😡
Symbolically Executing

Felix Montanari CaptainBoggle

😡
Symbolically Executing
View GitHub Profile
@CaptainBoggle
CaptainBoggle / SafeSecs.c
Last active March 12, 2024 09:01
Unix post-exploitation evasion tool. Uses syscall_intercept to create an LD_PRELOAD that you can use to have any program prompt you before performing actions that you may want to avoid.
#include <dlfcn.h>
#include <errno.h>
#include <execinfo.h>
#include <fcntl.h>
#include <libsyscall_intercept_hook_point.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syscall.h>