0

I have a Firefox configured to use my proxy server. The proxy is receiving a request from Firefox with the header:

CONNECT [::]:443 HTTP/1.1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:77.0) Gecko/20100101 Firefox/77.0
Proxy-Connection: keep-alive
Connection: keep-alive
Host: [::]:443

What is the meaning of this? It can't connect to any 3rd party host, so what is the proxy meant to do?

(I've tried a few google searches but the syntax confuses Google...)

CaptainCodeman
  • 207
  • 1
  • 7

1 Answers1

1

[::] is the shorthand IPv6 notation of localhost.

:443 is HTTPS.

Your browser is making a request to https://localhost over IPv6.

Usually clients are configured not to use proxies for local connections. It seems like you have a client where this option has been turned off.

Gerald Schneider
  • 19,757
  • 8
  • 52
  • 79