NC 发送HTTP 报文请求
查找DNS地址
首先查找httpbin.org 的dns 地址
1 |
|
nc 使用HTTP/1.0 协议与httpbin.org 进行报文通讯
1 |
|
- -v 参数是打印详细信息
- GET /get HTTP/1.0 是自己手动输入的
-
Enter
按两次
使用echo 命令转义字符
1 |
|
nc 使用HTTP/1.1 协议与httpbin.org 进行报文通讯
1 |
|
1 |
|
使用nc 发送POST 请求
1 |
|
- 直接使用 get 中的方式
1 |
|
直接使用表单格式
1
2echo -e "POST /post HTTP/1.0\r\nContent-Type: application/x-www-form-urlencoded\r\n\r\nkey1=value1&key2=value2" | nc -v 18.213.123.165 80
# 没有解析出来使用 Content-Length + form
1 |
|
- 只使用Content-Length
1 |
|
只在data 中有值
1 |
|
使用nc 发送HEAD请求
1 |
|
NC 发送HTTP 报文请求
https://kingjem.github.io/2024/12/03/nc 发送请求/