Skip to content

Instantly share code, notes, and snippets.

@Yorickov
Last active November 14, 2019 22:26
Show Gist options
  • Select an option

  • Save Yorickov/c43b8da4b61478c64f496e9a9c94b121 to your computer and use it in GitHub Desktop.

Select an option

Save Yorickov/c43b8da4b61478c64f496e9a9c94b121 to your computer and use it in GitHub Desktop.

Revisions

  1. Yorickov revised this gist Nov 14, 2019. 1 changed file with 25 additions and 10 deletions.
    35 changes: 25 additions & 10 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -1,24 +1,39 @@
    ncat -C httpbin.org 80
    POST /index.php HTTP/2.0
    POST /anything?pass=5 HTTP/2.0
    Host: httpbin.org
    Content-Length: 5
    Content-Type: application/x-www-form-urlencoded

    id=1
    HTTP/1.1 404 NOT FOUND
    id=11
    HTTP/1.1 200 OK
    Access-Control-Allow-Credentials: true
    Access-Control-Allow-Origin: *
    Content-Type: text/html
    Date: Thu, 14 Nov 2019 21:31:14 GMT
    Content-Type: application/json
    Date: Thu, 14 Nov 2019 22:24:45 GMT
    Referrer-Policy: no-referrer-when-downgrade
    Server: nginx
    X-Content-Type-Options: nosniff
    X-Frame-Options: DENY
    X-XSS-Protection: 1; mode=block
    Content-Length: 233
    Content-Length: 367
    Connection: Close

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
    <title>404 Not Found</title>
    <h1>Not Found</h1>
    <p>The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.</p>
    {
    "args": {
    "pass": "5"
    },
    "data": "",
    "files": {},
    "form": {
    "id": "11"
    },
    "headers": {
    "Content-Length": "5",
    "Content-Type": "application/x-www-form-urlencoded",
    "Host": "httpbin.org"
    },
    "json": null,
    "method": "POST",
    "origin": "185.203.155.29, 185.203.155.29",
    "url": "https://httpbin.org/anything?pass=5"
    }
  2. Yorickov created this gist Nov 14, 2019.
    24 changes: 24 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    ncat -C httpbin.org 80
    POST /index.php HTTP/2.0
    Host: httpbin.org
    Content-Length: 5
    Content-Type: application/x-www-form-urlencoded

    id=1
    HTTP/1.1 404 NOT FOUND
    Access-Control-Allow-Credentials: true
    Access-Control-Allow-Origin: *
    Content-Type: text/html
    Date: Thu, 14 Nov 2019 21:31:14 GMT
    Referrer-Policy: no-referrer-when-downgrade
    Server: nginx
    X-Content-Type-Options: nosniff
    X-Frame-Options: DENY
    X-XSS-Protection: 1; mode=block
    Content-Length: 233
    Connection: Close

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
    <title>404 Not Found</title>
    <h1>Not Found</h1>
    <p>The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.</p>