网猫问题。看不到输出
Netcat issues. Can't see output
好吧,我有简单的 PHP 可以回显。它在端口 9292 上,它是 index.php
当我在浏览器上输入 http://xx.xxx.xxx.xx:9292/ 时,我可以看到 "OK" 消息。
所以我想从 netcat 接收它的输出。
nc xx.xxx.xxx.xx 9292
它堆叠。我做错了什么?
您想详细说明连接,
nc -v xxx.xxx.xxx.xxx 9292
然后,当您得到 'connected' 答案时,输入
get http://xxx.xxx.xxx.xxx/index.php
您将获得 html 纯文本输出。
好吧,我有简单的 PHP 可以回显。它在端口 9292 上,它是 index.php 当我在浏览器上输入 http://xx.xxx.xxx.xx:9292/ 时,我可以看到 "OK" 消息。 所以我想从 netcat 接收它的输出。
nc xx.xxx.xxx.xx 9292
它堆叠。我做错了什么?
您想详细说明连接,
nc -v xxx.xxx.xxx.xxx 9292
然后,当您得到 'connected' 答案时,输入
get http://xxx.xxx.xxx.xxx/index.php
您将获得 html 纯文本输出。