gospider icon indicating copy to clipboard operation
gospider copied to clipboard

Proxy settings not fully honored

Open ocervell opened this issue 1 year ago • 0 comments

It seems that proxies are not honored, by looking at Wireshark traffic I see some requests not going through any proxy.

I think this is related to https://github.com/gocolly/colly/issues/392

We probably need to disable keep alives like:

c.WithTransport(&http.Transport{
  DisableKeepAlives: true,
})

in the code here

ocervell avatar May 09 '23 10:05 ocervell