diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-18 17:36:58 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-18 17:36:58 +0200 |
commit | f5c5deb2aea047394238f3b993ddf24c60845768 (patch) | |
tree | 962f2a728037e2f235553ca4a61c0e6f5945f526 /netlib/http_uastrings.py | |
parent | 69e71097f7a9633a43d566b2a46aab370f07dce3 (diff) | |
download | mitmproxy-f5c5deb2aea047394238f3b993ddf24c60845768.tar.gz mitmproxy-f5c5deb2aea047394238f3b993ddf24c60845768.tar.bz2 mitmproxy-f5c5deb2aea047394238f3b993ddf24c60845768.zip |
fix http user agents
Diffstat (limited to 'netlib/http_uastrings.py')
-rw-r--r-- | netlib/http_uastrings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netlib/http_uastrings.py b/netlib/http_uastrings.py index c1ef557c..e8681908 100644 --- a/netlib/http_uastrings.py +++ b/netlib/http_uastrings.py @@ -30,10 +30,10 @@ UASTRINGS = [ "Googlebot/2.1 (+http://www.googlebot.com/bot.html)"), # noqa ("ie9", "i", - "Mozilla/5.0 (Windows; U; MSIE 9.0; WIndows NT 9.0; en-US))"), # noqa + "Mozilla/5.0 (Windows; U; MSIE 9.0; WIndows NT 9.0; en-US)"), # noqa ("ipad", "p", - "Mozilla/5.0 (iPad; CPU OS 5_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko ) Version/5.1 Mobile/9B176 Safari/7534.48.3"), # noqa + "Mozilla/5.0 (iPad; CPU OS 5_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B176 Safari/7534.48.3"), # noqa ("iphone", "h", "Mozilla/5.0 (iPhone; CPU iPhone OS 4_2_1 like Mac OS X) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148a Safari/6533.18.5"), # noqa |