使用nc 模拟http请求

nc是很好用的命令,可以用来模拟http请求

 echo -e "GET /1.flv HTTP/1.0\r\nHost: www.test.com\r\n\r\n" | nc www.test.com 80

这样,就能模拟http请求,向www.test.com的80端口请求,比较要注意的是\r\n和\r\n\r\n的使用

posted @ 2019-11-18 20:57  抟九  阅读(3440)  评论(0编辑  收藏  举报