Skip to content

Commit cdba196

Browse files
committed
set Proxy-Authorization header instead of basic auth
Signed-off-by: Matthias Bertschy <matthias.bertschy@gmail.com>
1 parent b69d5d4 commit cdba196

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

utils/http_proxy.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ package utils
55
import (
66
"bufio"
77
"context"
8+
"encoding/base64"
89
"fmt"
910
"net"
1011
"net/http"
@@ -71,7 +72,8 @@ func (s *httpProxy) Dial(_, addr string) (net.Conn, error) {
7172
}
7273
req.Close = false
7374
if s.haveAuth {
74-
req.SetBasicAuth(s.username, s.password)
75+
credential := base64.StdEncoding.EncodeToString([]byte(s.username + ":" + s.password))
76+
req.Header.Set("Proxy-Authorization", "Basic "+credential)
7577
}
7678

7779
err = req.Write(c)

0 commit comments

Comments
 (0)