commit
Some checks failed
Build to Gitea Registry / build-push (push) Has been cancelled

This commit is contained in:
clxhzg
2025-12-01 18:05:25 +08:00
commit 708476636e
8 changed files with 199 additions and 0 deletions

BIN
src/pwn Normal file

Binary file not shown.

16
src/pwn.c Normal file
View File

@@ -0,0 +1,16 @@
#include<stdio.h>
void init()
{
setvbuf(stdout, 0LL, 2, 0LL);
setvbuf(stdin, 0LL, 2, 0LL);
setvbuf(stderr, 0LL, 2, 0LL);
}
int main() {
init();
printf("give you the shell, give me the flag\n");
system("/bin/sh");
return 0;
}