-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
this doesnt work with multipart form
you can test to forward to
http://www.md5online.org/md5-encrypt.html
code:
package main
import (
"net/http"
"net/url"
"github.com/cssivision/reverseproxy"
)
func main() {
http.ListenAndServe(":9595", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
path, err := url.Parse("http://www.md5online.org")
if err != nil {
panic(err)
return
}
proxy := reverseproxy.NewReverseProxy(path)
proxy.ServeHTTP(w, r)
}))
}
it should show md5 for input value, but we go "bad format".
The same on other servers.
Metadata
Metadata
Assignees
Labels
No labels