mirror of
https://github.com/nganhkhoa/CTF-All-In-One.git
synced 2025-06-24 04:05:03 +07:00
update format string
This commit is contained in:
BIN
src/Others/3.3.1_fmt
Executable file
BIN
src/Others/3.3.1_fmt
Executable file
Binary file not shown.
10
src/Others/3.3.1_fmt.c
Normal file
10
src/Others/3.3.1_fmt.c
Normal file
@ -0,0 +1,10 @@
|
||||
#include<stdio.h>
|
||||
void main() {
|
||||
char str[1024];
|
||||
while(1) {
|
||||
memset(str, '\0', 1024);
|
||||
read(0, str, 1024);
|
||||
printf(str);
|
||||
fflush(stdout);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user