Files
CTF/DownUnderCTF 2023/beginner/confusing/README.md
Simon 9d960e60ac downloaded challenges
didnt know they would publish everything
2023-09-04 22:08:12 +02:00

45 lines
642 B
Markdown

# confusing
```
Types can be very confusing.
Author: joseph
nc 2023.ductf.dev 30024
```
## Source
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void init() {
setvbuf(stdout, 0, 2, 0);
setvbuf(stdin, 0, 2, 0);
}
int main() {
init();
short d;
double f;
char s[4];
int z;
printf("Give me d: ");
scanf("%lf", &d);
printf("Give me s: ");
scanf("%d", &s);
printf("Give me f: ");
scanf("%8s", &f);
if(z == -1 && d == 13337 && f == 1.6180339887 && strncmp(s, "FLAG", 4) == 0) {
system("/bin/sh");
} else {
puts("Still confused?");
}
}
```