Rating:

# Baby Onion
---
## Approach
Server return the game information. All I have to do is send answer(0 or 1) that mean which one won. However I didn't get flag...

## Solution
At first, using ArthutAshe_solve.py, I got b'You did great! Thank you!'.
And I realize that the answer order is constant value.
```
01000100 01100001 01110111 01100111 01000011 01010100 01000110 01111011 01001100 00110000 01110110 00110011 01001101 01100101 01000000 01101110 00110101 01011111 01001110 00110000 00110111 01101000 00110001 01101110 01100111 00100001 01101110 01011111 01010100 00100011 01100101 01011111 01000111 01000000 01101101 00110011 01011111 01001111 01100110 01011111 01010100 00110011 01101110 01101110 00110001 00110101 00101110 01111101
```
So I convert bynary to string and got the flag.

## Flag
```
DawgCTF{L0v3Me@n5_N07h1ng!n_T#e_G@m3_Of_T3nn15.}
```

Original writeup (https://github.com/o621/c4r0-ctf/tree/master/DawgCTF2020/Coding/ArthurAshe).