Tags: warmups
Rating:
```python
import socket, time
sock = socket.socket()
sock.connect(('jh2i.com', 50003))
time.sleep(1)
data = sock.recv(1024).replace(b'\r', b'').decode()
print(data)
```
solution script: [solution.py](https://github.com/wetox-team/writeup/blob/master/hacktivitycon/internet_cattos/solution.py)
flag is `flag{this_netcat_says_meow}`