Skip to content

Instantly share code, notes, and snippets.

@Sandstorm750
Created March 15, 2019 20:01
Show Gist options
  • Save Sandstorm750/7fdb05538dc754869d7aaaf0ad1b6895 to your computer and use it in GitHub Desktop.
Save Sandstorm750/7fdb05538dc754869d7aaaf0ad1b6895 to your computer and use it in GitHub Desktop.
GET + Params
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