Skip to content

Instantly share code, notes, and snippets.

@secretpray
Created September 14, 2020 12:48
Show Gist options
  • Save secretpray/502dedbd935a167d52e4095633eeeeba to your computer and use it in GitHub Desktop.
Save secretpray/502dedbd935a167d52e4095633eeeeba to your computer and use it in GitHub Desktop.
POST запрос с любыми параметрами
ncat -c httpbin.org 80
POST /user?admin=1 HTTP/1.1
Content-Length: 7
admin=1
Ответ
HTTP/1.1 400 Bad Request
Server: awselb/2.0
Date: Mon, 14 Sep 2020 12:46:33 GMT
Content-Type: text/html
Content-Length: 138
Connection: close
<html>
<head><title>400 Bad Request</title></head>
<body bgcolor="white">
<center><h1>400 Bad Request</h1></center>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment