<div dir="ltr">Can i stop squid from 'repairing' host headers?<br><div>I've been all over this for hours, I can only lead this back to this change in 1999 <br><a href="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=50292">https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=50292</a></div><div><br>I wan't this sample code to do trough squid what it would do without a proxy at all and i want squid to log the host header set by the sample code.</div><div><br></div><div>```</div><div>import requests<br><br>proxies = {'http': '<a href="http://10.0.0.4:8080">http://10.0.0.4:8080</a>',}<br>headers = {"Host":"<a href="http://someevilhost.appspot.com">someevilhost.appspot.com</a>","Tester":"xychix",}<br><br>s = requests.Session()<br>#### proxy is set OFF<br>s.proxies = proxies<br>r = s.get('<a href="http://www.google.com/">http://www.google.com/</a>',headers=headers)<br><br>print(r.status_code)<br>print(r.text[:80])<br></div><div>```</div></div>