Skip to content

Instantly share code, notes, and snippets.

@affix
Created October 10, 2022 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save affix/53d7d5222c628af03a7a5442d151b2de to your computer and use it in GitHub Desktop.
Save affix/53d7d5222c628af03a7a5442d151b2de to your computer and use it in GitHub Desktop.
Hooking Read from my tutorial on process hiding, part 1
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
ssize_t read(int fd, void *buf, size_t count) {
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment