Created
September 14, 2020 12:48
-
-
Save secretpray/502dedbd935a167d52e4095633eeeeba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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