Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. Tried to open wepage and on port 80 got redirected to https
  2.  
  3. # curl -v http://awesome-hd.net/
  4. * About to connect() to awesome-hd.net port 80 (#0)
  5. * Trying 104.28.6.23... connected
  6. * Connected to awesome-hd.net (104.28.6.23) port 80 (#0)
  7. > GET / HTTP/1.1
  8. > User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.15.3 zlib/1.2.3 libidn/1.18 libssh2/1.4.2
  9. > Host: awesome-hd.net
  10. > Accept: */*
  11. >
  12. < HTTP/1.1 302 Moved Temporarily
  13. < Date: Sun, 23 Nov 2014 18:14:34 GMT
  14. < Content-Type: text/html; charset=UTF-8
  15. < Transfer-Encoding: chunked
  16. < Connection: keep-alive
  17. < Set-Cookie: __cfduid=d87ccdc49efd5f40880dc034578138fbf1416766474; expires=Mon, 23-Nov-15 18:14:34 GMT; path=/; domain=.awesome-hd.net; HttpOnly
  18. < Location: https://awesome-hd.net/
  19. < Vary: Accept-Encoding
  20. < Server: cloudflare-nginx
  21. < CF-RAY: 18df58dea02705a3-ARN
  22. <
  23. * Connection #0 to host awesome-hd.net left intact
  24. * Closing connection #0
  25.  
  26. no responce on port 443
  27.  
  28. # curl -v https://awesome-hd.net/
  29. * About to connect() to awesome-hd.net port 443 (#0)
  30. * Trying 104.28.6.23... Connection timed out
  31. * Trying 104.28.7.23... Connection timed out
  32. * couldn't connect to host
  33. * Closing connection #0
  34. curl: (7) couldn't connect to host
  35.  
  36.  
  37. Scanning from our isp shows what port is filtering.
  38.  
  39. # nmap -p443 awesome-hd.net
  40.  
  41. Nmap scan report for awesome-hd.net (104.28.6.23)
  42. Host is up (0.040s latency).
  43. Other addresses for awesome-hd.net (not scanned): 104.28.7.23
  44. PORT STATE SERVICE
  45. 443/tcp filtered https
  46.  
  47. Nmap done: 1 IP address (1 host up) scanned in 1.16 seconds
  48.  
  49.  
  50. Meanwhile scaning from different isp than other shows what port 443 is available.
  51.  
  52. # nmap -p443 awesome-hd.net
  53.  
  54. Nmap scan report for awesome-hd.net (104.28.7.23)
  55. Host is up (0.062s latency).
  56. Other addresses for awesome-hd.net (not scanned): 104.28.6.23
  57. PORT STATE SERVICE
  58. 443/tcp open https
  59.  
  60. Nmap done: 1 IP address (1 host up) scanned in 1.54 seconds
  61.  
  62.  
  63. Conlusiong, port 443 is closed for our isp, id recommend you to contact site admins.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement