Created
March 15, 2019 20:42
-
-
Save Sandstorm750/5a376a983192119d65b8436892254992 to your computer and use it in GitHub Desktop.
POST3
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
C:\Program Files (x86)\Nmap>ncat httpbin.org 80 -C | |
POST /anything HTTP/1.1 | |
Host: httpbin.org | |
Content-Length: 8 | |
vint=258 | |
HTTP/1.1 200 OK | |
Access-Control-Allow-Credentials: true | |
Access-Control-Allow-Origin: * | |
Content-Type: application/json | |
Date: Fri, 15 Mar 2019 20:40:20 GMT | |
Server: nginx | |
Content-Length: 269 | |
Connection: keep-alive | |
{ | |
"args": {}, | |
"data": "vint=258", | |
"files": {}, | |
"form": {}, | |
"headers": { | |
"Content-Length": "8", | |
"Host": "httpbin.org" | |
}, | |
"json": null, | |
"method": "POST", | |
"origin": "77.222.96.41, 77.222.96.41", | |
"url": "https://httpbin.org/anything" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment