Created
October 10, 2022 08:26
-
-
Save affix/53d7d5222c628af03a7a5442d151b2de to your computer and use it in GitHub Desktop.
Hooking Read from my tutorial on process hiding, part 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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