We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ curl -v https://portswigger.net -x http://127.0.0.1:8080
./proxify -ha "127.0.0.1:8080" -v _ ___ ___ _______ __ __ (_) _/_ __ / _ \/ __/ _ \\ \ // / _/ // / / .__/_/ \___/_\_\/_/_/ \_, / /_/ /___/ projectdiscovery.io [INF] Current proxify version 0.0.9 (latest) [INF] HTTP Proxy Listening on 127.0.0.1:8080 [INF] Socks5 Proxy Listening on 127.0.0.1:10080 [INF] Saving proxify traffic to logs 2023/03/30 01:27:29 ERROR: martian: got error while writing response back to client: malformed chunked encoding
$ curl -v https://projectdiscovery.io -x http://127.0.0.1:8080 > CONNECT projectdiscovery.io:443 HTTP/1.1 > Host: projectdiscovery.io:443 > User-Agent: curl/7.86.0 > Proxy-Connection: Keep-Alive > < HTTP/1.1 200 OK < Content-Length: 0 * Ignoring Content-Length in CONNECT 200 response
The text was updated successfully, but these errors were encountered:
Looks like Content Length is added whenres.Write is used even if we set Content-Length = -1 . since this is not a error we probably can skip this
res.Write
Content-Length = -1
Sorry, something went wrong.
tarunKoyalwar
Successfully merging a pull request may close this issue.
Proposed Changes
POC
$ curl -v https://portswigger.net -x http://127.0.0.1:8080
Investigate/ Review
The text was updated successfully, but these errors were encountered: