> For the complete documentation index, see [llms.txt](https://codingmace.gitbook.io/masterward/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://codingmace.gitbook.io/masterward/ctf/2022/def-con-qualifiers-2022.md).

# DEF CON Qualifiers 2022

### Mic Check 1

**Solution**

```python
from pwn import *

x = input('Enter ticket: ')
ticket = x.encode()
p = remote("simple-service-c45xrrmhuc5su.shellweplayaga.me", 31337)
print(p.recv())

p.sendline(ticket)
eq = p.recv().decode()
eq= eq.split('=')[0]
ans = eval(eq)
p.sendline(str(ans).encode())
print(p.recv().decode())
```
