如何`nc -l 1234 | bash` 但将响应发送回连接器

如何`nc -l 1234 | bash` 但将响应发送回连接器

我的网络上有一个基本的 netcat 侦听器,它使用以下命令:nc -l 1234 | bash。该命令将 nc 中收到的所有内容运行到 BASh 中。然而,它是有效的,只有听众才能看到输出。如何让客户端能够看到输出?

相关内容