goproxy
goproxy copied to clipboard
An HTTP proxy library for Go
The following Go 1.11 CL will break TestCounterEncStreamHistogram. https://golang.org/cl/64451 crypto: randomly read an extra byte of randomness in some places Per CL description ... """ Code has ended up depending...
hello! Thank you for the nice library! I'm running an http proxy like reverse dynamic forward, but the http method works but only https doesn't work. When I specify the...
The connection to the client, when using the MITM proxy with option ConnectMitm, is hardcoded to use HTTP/1. See: ``` // always use 1.1 to support chunked encoding if _,...
Is there currently a way to use an http 3 client in goproxy?
I basically copy and pasted the example of http-dump, however, nothing is being written to log. It's just empty. I also tried using .OnRequest().DoFunc() however it's not working as well....
If a mitm request came in like `http://host/path` this was getting mangled to `https://hosthttp://host/path`. Instead, we should just swap the scheme to https if the scheme is already defined in...
This allows to return the full ca chain instead of returning only the leaf certificate. The change is backward compatible. Was there a security concern that I am not aware...
Hi i use this code but in browser NET::ERR_CERT_AUTHORITY_INVALID . how to solve the problem? ` package main import ( "flag" "log" "net/http" "crypto/tls" "crypto/x509" "github.com/elazarl/goproxy" ) var caCert =...
May superseed #445
Does goproxy support updating the expired certificate without a server restart, is there a hot reload option?