Rating:

Echo back what you receive 50 times! See the Python tutorial for more information

nc echo.tghack.no 5555

```python

import socket
import subprocess

s = socket.socket()
s.connect(('echo.tghack.no', 5555))

while True:
cmd = s.recv(1024)
print cmd


s.sendall(cmd)

#TG19{behold_the_echo_chamber_of_secrets}
```

Original writeup (https://github.com/ixSly/CTFs/blob/master/tghackCTF/Scripting/EchoChamber.md).