Fix: vmess http should use Host header on request

This commit is contained in:
Dreamacro 2021-05-16 20:05:41 +08:00
parent 4e5898197a
commit 06fdd3abe0

View File

@ -52,7 +52,12 @@ func (hc *httpConn) Write(b []byte) (int, error) {
}
path := hc.cfg.Path[rand.Intn(len(hc.cfg.Path))]
u := fmt.Sprintf("http://%s%s", hc.cfg.Host, path)
host := hc.cfg.Host
if header := hc.cfg.Headers["Host"]; len(header) != 0 {
host = header[rand.Intn(len(header))]
}
u := fmt.Sprintf("http://%s%s", host, path)
req, _ := http.NewRequest("GET", u, bytes.NewBuffer(b))
for key, list := range hc.cfg.Headers {
req.Header.Set(key, list[rand.Intn(len(list))])