首先下载 pwntools
pwntools
也可以用 pip 装:pip install pwn
在 python 中调用 from pwn import *
# 连接
send(data) : 发送数据 | |
sendline(data) : 发送一行数据,相当于在末尾加\n | |
recv(numb=4096, timeout=default) : 给出接收字节数,timeout指定超时 | |
recvuntil(delims, drop=False) : 接收到delims的pattern | |
(以下可以看作until的特例) | |
recvline(keepends=True) : 接收到\n,keepends指定保留\n | |
recvall() : 接收到EOF | |
recvrepeat(timeout=default) : 接收到EOF或timeout | |
interactive() : 与shell交互 |