goproxy icon indicating copy to clipboard operation
goproxy copied to clipboard

An HTTP proxy library for Go

Results 143 goproxy issues
Sort by recently updated
recently updated
newest added

For example, Android emulator can't work with `Transfer-Encoding: chunked` and it's very annoying to me.

With CookieMatches you will be able to trigger any behaviour if you find regexp matches against some particular cookie pattern.

This patch solves the bug related to the "cannot write" error messages reported by several people. The problemd resided on the server connection not being closed when the client close...

In https, the clients close the connections when they receive the expected data, it's harmless. This patch avoids warnings if it could write bytes to the clients.

set the authorization header for proxies with authentication using tunneling

I suppose there is logic in HttpRequest to set the field when receiving the header, but apparently it does not keep both in sync (or favor the field). The tests...

This allows the users to client handle connect errors related to certificates, useful, as in the example, when some clients are using certificate pinning to allow them to connect without...

I fixed the cert date range as follow: ```go start := time.Unix(time.Now().Unix()-2592000, 0) // 2592000 = 30 day end := time.Unix(time.Now().Unix()+31536000, 0) // 31536000 = 365 day ```

After running httpdump, I redirect the traffic from the firefox through the proxy. When I visited "http://bbc.com", the webpage always shows "FileStream was never written into". After investigation, I think...