因此,python 有一个方便的功能,pwntools
可以sendline()
作为可执行文件的一部分。如何在 bash 中模拟此功能?
例子
#whatever.py
x = input("First input please: ")
y = input("Second input please: ")
我知道我可以echo "input1" | python3 whatever.py
回答第一个输入,但我不能让它多行工作(echo "input1\ninput2" | ...
不起作用,也不行echo "input1"; echo "input2" | ...
)。