Advertisement
fkeles

Untitled

Apr 19th, 2023
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.96 KB | Source Code | 0 0
  1. ubuntu@FAKELES-7310:~$ wget -SqO- http://<LB_IP>:80
  2.   HTTP/1.1 302 Moved Temporarily
  3.   Via: 1.1 10.254.234.15 (McAfee Web Gateway 11.2.6.43601)
  4.   Date: Wed, 19 Apr 2023 09:12:08 GMT
  5.   Location: https://<LB_IP>:443/
  6.   Connection: Keep-Alive
  7.   Content-Type: text/html
  8.   Content-Length: 133
  9. ubuntu@FAKELES-7310:~$ curl -ikv https://<LB_IP>:443
  10. *   Trying <LB_IP>:443...
  11. * TCP_NODELAY set
  12. * Connected to <LB_IP> (<LB_IP>) port 443 (#0)
  13. * ALPN, offering h2
  14. * ALPN, offering http/1.1
  15. * successfully set certificate verify locations:
  16. *   CAfile: /etc/ssl/certs/ca-certificates.crt
  17.   CApath: /etc/ssl/certs
  18. * TLSv1.3 (OUT), TLS handshake, Client hello (1):
  19. * TLSv1.3 (IN), TLS handshake, Server hello (2):
  20. * TLSv1.2 (IN), TLS handshake, Certificate (11):
  21. * TLSv1.2 (IN), TLS handshake, Server key exchange (12):
  22. * TLSv1.2 (IN), TLS handshake, Server finished (14):
  23. * TLSv1.2 (OUT), TLS handshake, Client key exchange (16):
  24. * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1):
  25. * TLSv1.2 (OUT), TLS handshake, Finished (20):
  26. * TLSv1.2 (IN), TLS handshake, Finished (20):
  27. * SSL connection using TLSv1.2 / ECDHE-RSA-AES128-GCM-SHA256
  28. * ALPN, server accepted to use http/1.1
  29. * Server certificate:
  30. *  subject: C=NL; ST=Amsterdam; L=Amsterdam; O=Oracle ACE; OU=Org; CN=oci-ace-demos.com
  31. *  start date: Apr 11 13:24:38 2023 GMT
  32. *  expire date: Apr 10 13:24:38 2024 GMT
  33. *  issuer: C=NL; ST=Amsterdam; L=Amsterdam; O=Oracle ACE; OU=Org; CN=oci-ace-demos.com
  34. *  SSL certificate verify result: self signed certificate (18), continuing anyway.
  35. > GET / HTTP/1.1
  36. > Host: <LB_IP>
  37. > User-Agent: curl/7.68.0
  38. > Accept: */*
  39. >
  40. * Mark bundle as not supporting multiuse
  41. < HTTP/1.1 302 Found
  42. HTTP/1.1 302 Found
  43. < Date: Wed, 19 Apr 2023 09:13:08 GMT
  44. Date: Wed, 19 Apr 2023 09:13:08 GMT
  45. < Content-Length: 0
  46. Content-Length: 0
  47. < Connection: keep-alive
  48. Connection: keep-alive
  49. < Location: http://<LB_IP>/ords/
  50. Location: http://<LB_IP>/ords/
  51.  
  52. <
  53. * Connection #0 to host <LB_IP> left intact
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement