如何使用null用户代理发送请求?

时间:2014-12-08 03:11:09

标签: http debugging user-agent

在我的webapp中,我收到了没有用户代理的请求的关键错误。

如何在没有用户代理的情况下发出请求进行调试和测试呢?

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:1)

https://security.stackexchange.com/questions/48223/how-to-send-get-post-requests-without-header-and-agent-information

nc example.com 80 << http_message_file

未在文件中加载请求,而是让我使用此处DOC进行输入。

cat http_message_file | nc example.com 80

诀窍

答案 1 :(得分:0)

curl -H "User-Agent:" example.com

这将覆盖curl发送的默认用户代理,并在服务器上显示为空。