Created
March 15, 2019 20:01
-
-
Save Sandstorm750/7fdb05538dc754869d7aaaf0ad1b6895 to your computer and use it in GitHub Desktop.
GET + Params
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 | |
GET /anything?time_continue=5&v=KlZv4MSF5I8 HTTP/1.1 | |
Host: httpbin.org | |
HTTP/1.1 200 OK | |
Access-Control-Allow-Credentials: true | |
Access-Control-Allow-Origin: * | |
Content-Type: application/json | |
Date: Fri, 15 Mar 2019 19:59:18 GMT | |
Server: nginx | |
Content-Length: 315 | |
Connection: keep-alive | |
{ | |
"args": { | |
"time_continue": "5", | |
"v": "KlZv4MSF5I8" | |
}, | |
"data": "", | |
"files": {}, | |
"form": {}, | |
"headers": { | |
"Host": "httpbin.org" | |
}, | |
"json": null, | |
"method": "GET", | |
"origin": "77.222.96.41, 77.222.96.41", | |
"url": "https://httpbin.org/anything?time_continue=5&v=KlZv4MSF5I8" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment