Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | * | | Update certutils.py | Maximilian Hils | 2014-04-25 | 1 | -1/+1 | |
| | | | | | | | | | | | | refs mitmproxy/mitmproxy#200 | |||||
| | * | | make error message example less abstract. | Maximilian Hils | 2014-03-31 | 1 | -1/+1 | |
| | | | | ||||||
| | * | | Merge pull request #35 from droope/patch-1 | Maximilian Hils | 2014-03-31 | 1 | -1/+2 | |
| | |\ \ | | | |/ | | |/| | Change odict error message. | |||||
| | | * | Instead of removing the error, for consistency, leaving the error as-was | Pedro Worcel | 2014-03-31 | 1 | -3/+2 | |
| | | | | | | | | | | | | | | | | | | | | and replaced the message with something that may or may not be more understandable :P | |||||
| | | * | Change error into awesome user-friendlyness | Pedro Worcel | 2014-03-30 | 1 | -1/+3 | |
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hi there, I was getting a very weird error "ODict valuelist should be lists", when attempting to add a header. My code was as followed: ``` msg.headers["API-Key"] = new_headers["API-Key"] 42 msg.headers["API-Sign"] = new_headers["API-Sign"] ``` In the end, that was because there could be multiple equal headers. In order to cater to that, it you guys might enjoy the patch I attach, for it converts strings automatically into lists of multiple headers. I think it should work, but I haven't tested it :$ It'd allow me to have the above code, instead of this one below: ``` msg.headers["API-Key"] = [new_headers["API-Key"]] 42 msg.headers["API-Sign"] = [new_headers["API-Sign"]] ``` | |||||
| | * | Merge pull request #31 from mitmproxy/fix_dhparam_gen | Maximilian Hils | 2014-03-12 | 1 | -0/+7 | |
| | |\ | | | | | | | | | create dhparam file if it doesn't exist, fix mitmproxy/mitmproxy#235 | |||||
| | | * | create dhparam file if it doesn't exist, fix mitmproxy/mitmproxy#235 | Maximilian Hils | 2014-03-11 | 1 | -0/+7 | |
| | |/ | ||||||
| | * | fix #28 | Maximilian Hils | 2014-03-10 | 3 | -2/+27 | |
| | | | ||||||
| | * | Certificate flags | Aldo Cortesi | 2014-03-10 | 5 | -57/+130 | |
| | | | ||||||
| | * | Support Ephemeral Diffie-Hellman | Aldo Cortesi | 2014-03-07 | 5 | -11/+56 | |
| | | | ||||||
| | * | CertStore: cope with certs that have no common name | Aldo Cortesi | 2014-03-05 | 1 | -3/+4 | |
| | | | ||||||
| | * | Handler convert_to_ssl now takes a key object, not a path. | Aldo Cortesi | 2014-03-05 | 2 | -3/+7 | |
| | | | ||||||
| | * | Much more sophisticated certificate store | Aldo Cortesi | 2014-03-05 | 2 | -15/+140 | |
| | | | | | | | | | | | | | | | | | | | | | - Handle wildcard lookup - Handle lookup of SANs - Provide hooks for registering override certs and keys for specific domains (including wildcard specifications) | |||||
| | * | Beef up CertStore, add DH params. | Aldo Cortesi | 2014-03-04 | 2 | -97/+99 | |
| | | | ||||||
| | * | We now require PyOpenSSL >= 0.14 | Aldo Cortesi | 2014-03-02 | 2 | -4/+1 | |
| | | | ||||||
| | * | Use PyOpenSSL's underlying ffi interface to get current cipher for connections. | Aldo Cortesi | 2014-03-02 | 2 | -4/+47 | |
| | | | ||||||
| | * | Re-add state operations to ODict. | Aldo Cortesi | 2014-03-02 | 2 | -0/+19 | |
| | | | ||||||
| | * | Cleanups, tests, and no-cover directives for code sections we can't test. | Aldo Cortesi | 2014-03-02 | 4 | -21/+25 | |
| | | | ||||||
| | * | Minor improvement to CertStore interface | Aldo Cortesi | 2014-03-02 | 2 | -10/+9 | |
| | | | ||||||
| | * | Cipher suite selection for client connections, improved error handling | Aldo Cortesi | 2014-02-27 | 2 | -4/+47 | |
| | | | ||||||
| | * | Merge branch 'master' of ssh.github.com:cortesi/netlib | Aldo Cortesi | 2014-02-26 | 3 | -5/+8 | |
| | |\ | ||||||
| | | * | allow super() on TCPServer, add thread names for better debugging | Maximilian Hils | 2014-02-15 | 2 | -4/+7 | |
| | | | | ||||||
| | | * | Bump version | Maximilian Hils | 2014-02-11 | 1 | -1/+1 | |
| | | | | | | | | | | | | Do it now already so that mitmproxy will warn the user if netlib is not from master. | |||||
| | * | | Add an explicit license file. | Aldo Cortesi | 2014-02-26 | 1 | -0/+19 | |
| | |/ | | | | | | | | | | Fixes #30 | |||||
| | * | Merge branch 'tcp_proxy' | Aldo Cortesi | 2014-02-07 | 7 | -113/+144 | |
| | |\ | ||||||
| | | * | adjust netlib.wsgi to reflect changes in mitmproxys flow format | Maximilian Hils | 2014-02-05 | 3 | -6/+12 | |
| | | | | ||||||
| | | * | store used sni in TCPClient, add equality check for tcp.Address | Maximilian Hils | 2014-02-04 | 1 | -1/+7 | |
| | | | | ||||||
| | | * | move StateObject back into libmproxy | Maximilian Hils | 2014-01-31 | 4 | -109/+7 | |
| | | | | ||||||
| | | * | remove subclassing of tuple in tcp.Address, move StateObject into netlib | Maximilian Hils | 2014-01-30 | 4 | -16/+128 | |
| | | | | ||||||
| | | * | re-add server attribute to BaseHandler | Maximilian Hils | 2014-01-28 | 2 | -2/+4 | |
| | | | | ||||||
| | | * | add tcp.Address to unify ipv4/ipv6 address handling | Maximilian Hils | 2014-01-28 | 5 | -40/+67 | |
| | | | | ||||||
| | | * | Merge branch 'master' into tcp_proxy | Maximilian Hils | 2014-01-18 | 1 | -1/+1 | |
| | | |\ | ||||||
| | | * \ | Merge branch 'master' into tcp_proxy | Maximilian Hils | 2014-01-09 | 1 | -1/+1 | |
| | | |\ \ | ||||||
| | | * | | | fix tests, remove duplicate code | Maximilian Hils | 2014-01-09 | 2 | -55/+38 | |
| | | | | | | ||||||
| | | * | | | Merge remote-tracking branch 'origin/master' into tcp_proxy | Maximilian Hils | 2014-01-09 | 6 | -99/+96 | |
| | | |\ \ \ | ||||||
| | | * | | | | change parameter names to reflect changes | Maximilian Hils | 2014-01-09 | 2 | -17/+14 | |
| | | | | | | | ||||||
| | * | | | | | Merge branch 'master' of ssh.github.com:cortesi/netlib | Aldo Cortesi | 2014-01-28 | 3 | -5/+7 | |
| | |\ \ \ \ \ | ||||||
| | | * | | | | | move test requirements out of main requirements.txt | Maximilian Hils | 2014-01-28 | 3 | -5/+7 | |
| | | | | | | | | ||||||
| | * | | | | | | travis irc notifications | Aldo Cortesi | 2014-01-28 | 1 | -0/+7 | |
| | |/ / / / / | ||||||
| | * | | | | | Try even harderer to fix travis. | Aldo Cortesi | 2014-01-28 | 1 | -0/+1 | |
| | | | | | | | ||||||
| | * | | | | | Try harder to un-break travis | Aldo Cortesi | 2014-01-28 | 2 | -2/+1 | |
| | | | | | | | ||||||
| | * | | | | | travis: force install of pathod from git. | Aldo Cortesi | 2014-01-28 | 1 | -2/+2 | |
| | | | | | | | ||||||
| | * | | | | | Fix homepage URL | Aldo Cortesi | 2014-01-28 | 1 | -1/+1 | |
| | | | | | | | ||||||
| | * | | | | | Silence pyflakes, adjust requirements.txt | Aldo Cortesi | 2014-01-19 | 2 | -2/+1 | |
| | | |_|_|/ | | |/| | | | ||||||
| | * | | | | add CONNECT request to list of request types that don't have a response body | Maximilian Hils | 2014-01-18 | 1 | -1/+1 | |
| | | |_|/ | | |/| | | ||||||
| | * | | | display build status from master branch | Maximilian Hils | 2014-01-09 | 1 | -1/+1 | |
| | | |/ | | |/| | ||||||
| | * | | Make certificate not-before time 48 hours. | Aldo Cortesi | 2014-01-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | Fixes #200 | |||||
| | * | | Merge pull request #26 from mitmproxy/refactor_read_http_body | Aldo Cortesi | 2014-01-04 | 4 | -95/+91 | |
| | |\ \ | | | | | | | | | | | refactor http.read_http_body | |||||
| | | * | | refactor read_http_body | Maximilian Hils | 2013-12-15 | 4 | -95/+91 | |
| | | | | | ||||||
| | * | | | Make it possible to pass custom environment variables into wsgi apps. | Aldo Cortesi | 2014-01-05 | 1 | -3/+4 | |
| | | |/ | | |/| |