This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: urllib2 doesn't use proxy (fieddler2), configed the proxy with ProxyHandler
Type: behavior Stage:
Components: Library (Lib), Windows Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: orsenthil Nosy List: Or.Wilder, iritkatriel, orsenthil, paul.moore, pbumbulis, steve.dower, thomas.holmes, tim.golden, zach.ware
Priority: normal Keywords:

Created on 2011-07-03 15:16 by Or.Wilder, last changed 2022-04-11 14:57 by admin.

Messages (6)
msg139688 - (view) Author: Or (Or.Wilder) Date: 2011-07-03 15:16
I have fieddler2 listening on 0.0.0.0:8888.

this code is suppose to use the proxy on my localhost.

try:
    data = '' 
    proxy = urllib2.ProxyHandler({'http': '127.0.0.1:8888'})  //also tried {'http': 'http://127.0.0.1:8888/'}
    opener = urllib2.build_opener(proxy)
    urllib2.install_opener(opener)
    req = urllib2.Request('http://www.google.com')
    response = urllib2.urlopen(req)
    the_page = response.read()
        print the_page
except Exception, detail:
    print "Err ", detail


	

I have fieddler2 listening on 0.0.0.0:8888.

try:
    proxy = urllib2.ProxyHandler({'http': '127.0.0.1:8888'})  //also tried {'http': 'http://127.0.0.1:8888/'}
    opener = urllib2.build_opener(proxy)
    urllib2.install_opener(opener)
    req = urllib2.Request('http://www.google.com')
    response = urllib2.urlopen(req)
    the_page = response.read()
        print the_page
except Exception, detail:
    print "Err ", detail

I don't see the GET or any request to google in fieddler (but I can see other requests) is there a way to debug it? is seems like python bypasses fieddler or ignores the proxy.

the code is working, but it's not using the proxy to fetch google, it bypasses the proxy.

I also configured win7 to work with fieddler -

C:\Windows\system32>netsh winhttp set proxy 127.0.0.1:8888

Current WinHTTP proxy settings:

    Proxy Server(s) :  127.0.0.1:8888
    Bypass List     :  (none)

In order to check if the code is using the porxy I've changed fieddler to require proxy authentication and I had to use a user\pass on my browser when browsing, run the python code again and it worked, so it defiantly doesn't use the proxy.
msg139689 - (view) Author: Or (Or.Wilder) Date: 2011-07-03 15:18
I have fieddler2 listening on 0.0.0.0:8888.

this code is suppose to use the proxy on my localhost.

try:
    proxy = urllib2.ProxyHandler({'http': '127.0.0.1:8888'})  //also tried {'http': 'http://127.0.0.1:8888/'}
    opener = urllib2.build_opener(proxy)
    urllib2.install_opener(opener)
    req = urllib2.Request('http://www.google.com')
    response = urllib2.urlopen(req)
    the_page = response.read()
        print the_page
except Exception, detail:
    print "Err ", detail

I don't see the GET or any request to google in fieddler (but I can see other requests) is there a way to debug it? is seems like python bypasses fieddler or ignores the proxy.

the code is working, but it's not using the proxy to fetch google, it bypasses the proxy.

I also configured win7 to work with fieddler -

C:\Windows\system32>netsh winhttp set proxy 127.0.0.1:8888

Current WinHTTP proxy settings:

    Proxy Server(s) :  127.0.0.1:8888
    Bypass List     :  (none)

In order to check if the code is using the porxy I've changed fieddler to require proxy authentication and I had to use a user\pass on my browser when browsing, run the python code again and it worked, so it defiantly doesn't use the proxy.
msg139696 - (view) Author: Thomas Holmes (thomas.holmes) Date: 2011-07-03 18:58
I setup a proxy and it seems to be working properly. This is on win7 x64 professional using Python 2.7.1

I didn't using any sniffing software but if I broke the proxy the code broke. When I enabled the proxy it started working again. My proxy log also shows record of the access.
msg141157 - (view) Author: Peter Bumbulis (pbumbulis) Date: 2011-07-26 13:24
proxy_bypass_registry in urllib.py does not handle the ProxyOverride registry value properly:  it treats an empty override as *, i.e. bypass the proxy for all hosts.  This behavior does not match other programs (e.g. Chrome) and can be easily obtained by specify * for the override.  One fix would be to ignore empty tests, for example:

    ....
    for test in proxyOverride:
        if test:
            if test == '<local>':
            ...
    return 0
    ....

Perhaps whitespace should be stripped as well.

The problem arises because fiddler2 leaves a trailing ; on the ProxyOverride string.

One possible workaround is to set
    urllib.proxy_bypass = lambda h: 0
to disable bypass checking.  Another alternative would be to specify the proxy settings in the http_proxy environment variable (proxy_bypass_registry is not called in this case).
msg223154 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2014-07-15 21:54
@Senthil what if anything can we do with this issue?
msg394660 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2021-05-28 14:09
I think the problem is still there:

https://github.com/python/cpython/blame/bb3e0c240bc60fe08d332ff5955d54197f79751c/Lib/urllib/request.py#L2746

if proxyOverride ends with a ';' then the last "" is considered a match for any val in host.
History
Date User Action Args
2022-04-11 14:57:19adminsetgithub: 56689
2021-05-28 14:09:16iritkatrielsetversions: + Python 3.9, Python 3.10, Python 3.11, - Python 2.7
nosy: + paul.moore, tim.golden, iritkatriel, zach.ware, steve.dower

messages: + msg394660

components: - Extension Modules
type: behavior
2019-04-26 19:41:12BreamoreBoysetnosy: - BreamoreBoy
2014-07-15 21:54:12BreamoreBoysetnosy: + BreamoreBoy
messages: + msg223154
2011-07-26 23:17:11orsenthilsetassignee: orsenthil

nosy: + orsenthil
2011-07-26 13:24:31pbumbulissetnosy: + pbumbulis
messages: + msg141157
2011-07-03 18:58:51thomas.holmessetnosy: + thomas.holmes
messages: + msg139696
2011-07-03 15:18:05Or.Wildersetmessages: + msg139689
2011-07-03 15:16:12Or.Wildercreate