How to send a POST request through telnet

时间秒杀一切 提交于 2019-12-08 17:51:35

问题


I want to know how to send a POST request to a server (e.g. Google Search). I already know how to send a GET request,

For example:

GET http://www.google.com/

I tried doing it like this:

POST /wikipedia

or

POST wikipedia

or

POST
/wikipedia

or

POST Search: wikipedia

Anyone know how to send a POST request through telnet/cmd/batch?


回答1:


Of course you can, don't listen to npocmaka! Telnet just opens a TCP connection to a port in a server and does nothing else. So, if you send the right commands (in this case HTTP request commands) the server will respond OK.

An example of what you have to write is:

POST /path/script.cgi HTTP/1.0
From: frog@jmarshall.com
User-Agent: HTTPTool/1.0
Content-Type: application/x-www-form-urlencoded
Content-Length: 32

home=Cosby&favorite+flavor=flies
<PRESS ENTER KEY>

I think that you have to end with a new line for the command to get send.



来源:https://stackoverflow.com/questions/41147030/how-to-send-a-post-request-through-telnet

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!