Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. loki (11:04) 841/0 $ telnet localhost 8080
  2. Trying 127.0.0.1...
  3. Connected to localhost.
  4. Escape character is '^]'.
  5. GET / HTTP/1.0
  6. Host: foo:1234567
  7.  
  8. HTTP/1.0 404 Not Found on Accelerator
  9. Date: Fri, 28 Aug 2015 17:04:38 GMT
  10. Server: ATS/6.1.0
  11. Cache-Control: no-store
  12. Content-Type: text/html
  13. Content-Language: en
  14. Content-Length: 297
  15.  
  16. <HTML>
  17. <HEAD>
  18. <TITLE>Not Found on Accelerator</TITLE>
  19. </HEAD>
  20.  
  21. <BODY BGCOLOR="white" FGCOLOR="black">
  22. <H1>Not Found on Accelerator</H1>
  23. <HR>
  24.  
  25. <FONT FACE="Helvetica,Arial"><B>
  26. Description: Your request on the specified host was not found.
  27. Check the location and try again.
  28. </B></FONT>
  29. <HR>
  30. </BODY>
  31. Connection closed by foreign host.
  32. loki (11:04) 842/0 $ curl -v -D - -s -o /dev/null -H 'Host: foo:1234567' http://127.0.0.1:8080/ | head -1
  33. * Trying 127.0.0.1...
  34. * Connected to 127.0.0.1 (127.0.0.1) port 8080 (#0)
  35. > GET / HTTP/1.1
  36. > User-Agent: curl/7.40.0
  37. > Accept: */*
  38. > Host: foo:1234567
  39. >
  40. < HTTP/1.1 400 Invalid HTTP Request
  41. < Date: Fri, 28 Aug 2015 17:04:48 GMT
  42. < Connection: keep-alive
  43. < Server: ATS/6.1.0
  44. < Cache-Control: no-store
  45. < Content-Type: text/html
  46. < Content-Language: en
  47. < Content-Length: 220
  48. <
  49. { [220 bytes data]
  50. * Connection #0 to host 127.0.0.1 left intact
  51. HTTP/1.1 400 Invalid HTTP Request
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement