Skip to content

Instantly share code, notes, and snippets.

@rsdy

rsdy/touchthis.c Secret

Created November 19, 2018 15:14
Show Gist options
  • Save rsdy/bfe45ebae7354217e7242c8bf10df274 to your computer and use it in GitHub Desktop.
Save rsdy/bfe45ebae7354217e7242c8bf10df274 to your computer and use it in GitHub Desktop.
touchthis.c
/*
* gcc -static -o touchthis touchthis.c
*/
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
int main() {
int fd = creat("./file", 0777);
char space[] = {'\n'};
write(fd, space, sizeof(space));
close(fd);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment