Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | The final piece: netlib -> mitproxy.net | Aldo Cortesi | 2016-10-20 | 1 | -989/+0 |
| | |||||
* | netlib.exceptions.* -> mitmproxy.exceptions | Aldo Cortesi | 2016-10-20 | 1 | -1/+1 |
| | |||||
* | netlib.certutils -> mitmproxy.certs | Aldo Cortesi | 2016-10-20 | 1 | -6/+6 |
| | |||||
* | netlib.utils.[get,set]bit -> mitmproxy.utils.bits | Aldo Cortesi | 2016-10-20 | 1 | -1/+1 |
| | |||||
* | mitmproxy.types.[basethread,multidict,serializable] | Aldo Cortesi | 2016-10-20 | 1 | -3/+3 |
| | |||||
* | netlib.strutils -> mitmproxy.utils.strutils | Aldo Cortesi | 2016-10-20 | 1 | -1/+1 |
| | |||||
* | python3: clean up super and __future__ | Aldo Cortesi | 2016-10-17 | 1 | -3/+2 |
| | |||||
* | python3: clean up class brackets | Aldo Cortesi | 2016-10-17 | 1 | -5/+5 |
| | |||||
* | Zap object base class | Aldo Cortesi | 2016-10-17 | 1 | -5/+5 |
| | |||||
* | First-order conversion to Python3-only | Aldo Cortesi | 2016-10-17 | 1 | -15/+6 |
| | | | | | | - Zap various occurrences of Python2 in docs and scripts - Remove six from netlib, and some other places where obvious project-wide search and replace works. | ||||
* | Fix SSL error | Ryan Laughlin | 2016-09-30 | 1 | -5/+1 |
| | | | | This fixes an issue that occurs when a user supplies a custom SSL cert w/ intermediate certs that contradict the default certifi set of root certificates. In particular, this addressed an issue where the "COMODO RSA Certification Authority" cert in certifi is NOT trusted on OS X by default as of OS X 10.11.6. Even when the user manually supplied a different valid "COMODO RSA Certification Authority" cert in their custom SSL cert .pem file, that cert would be overridden by certifi's default cert. | ||||
* | allow socket creation monkeypatchs | Maximilian Hils | 2016-09-27 | 1 | -1/+5 |
| | |||||
* | minor cleanup | Maximilian Hils | 2016-09-22 | 1 | -11/+6 |
| | |||||
* | Introduced comment regarding socket manipulation through the server_conn stub. | smill@cuckoo.sh | 2016-09-22 | 1 | -0/+1 |
| | |||||
* | Commented on IP_TRANSPARENT and changed an exception type. | smill@cuckoo.sh | 2016-09-22 | 1 | -1/+2 |
| | |||||
* | Prevent crash in case of a connection timeout. | smill | 2016-09-14 | 1 | -3/+5 |
| | |||||
* | Made it possible to modify the server_conn.connection attribute, | smill | 2016-09-05 | 1 | -2/+7 |
| | | | | using the serverconnect stub. | ||||
* | Removed a mistakenly inserted newline character. | smill | 2016-09-04 | 1 | -1/+0 |
| | |||||
* | Improved error-handling / supplemented documention. | smill | 2016-09-04 | 1 | -3/+5 |
| | |||||
* | Introduced the capability to spoof the source address | smill | 2016-09-03 | 1 | -1/+7 |
| | | | | of outgoing sessions + an accompanying shim loader. | ||||
* | fix cert verification tests, remove leftovers | Maximilian Hils | 2016-07-27 | 1 | -18/+1 |
| | |||||
* | improve invalid certificate ux | Maximilian Hils | 2016-07-27 | 1 | -19/+44 |
| | |||||
* | sni is now str, not bytes | Maximilian Hils | 2016-07-06 | 1 | -2/+2 |
| | |||||
* | Start rolling out leak detection in netlib | Aldo Cortesi | 2016-06-14 | 1 | -0/+11 |
| | |||||
* | Make the tcp connection closer cancellable | Aldo Cortesi | 2016-06-12 | 1 | -9/+21 |
| | | | | And use this to make pathoc error handling more sophisticated | ||||
* | Improve debugging of thread and other leaks | Aldo Cortesi | 2016-06-11 | 1 | -5/+13 |
| | | | | | | | - Add basethread.BaseThread that all threads outside of test suites should use - Add a signal handler to mitmproxy, mitmdump and mitmweb that dumps resource information to screen when SIGUSR1 is received. - Improve thread naming throughout to make thread dumps understandable | ||||
* | netlib: always disconnect when using context manager | Maximilian Hils | 2016-06-06 | 1 | -2/+4 |
| | |||||
* | More explicit name for the tcp.Server handler counter | Aldo Cortesi | 2016-06-03 | 1 | -2/+2 |
| | |||||
* | Make tcp.Client.connect return a context manager that closes the connection | Aldo Cortesi | 2016-06-03 | 1 | -0/+8 |
| | |||||
* | Implement a service connection handler counter, use it in Pathod test suite | Aldo Cortesi | 2016-06-03 | 1 | -7/+28 |
| | | | | Lots of failures, but that's a good thing. | ||||
* | Reorganise netlib imports according to Google Style Guide | Aldo Cortesi | 2016-06-01 | 1 | -29/+26 |
| | |||||
* | Start cleaning up netlib.utils | Aldo Cortesi | 2016-05-31 | 1 | -2/+2 |
| | | | | | - Remove http2 functions, move to http2.frame - Remove Serializable, move to netlib.basetypes | ||||
* | Merge branch 'master' into solidcore | Aldo Cortesi | 2016-05-29 | 1 | -0/+1 |
|\ | |||||
| * | netlib: fix most flake8 offenses | Thomas Kriechbaumer | 2016-05-28 | 1 | -0/+1 |
| | | |||||
* | | Sketch out a more solid core | Aldo Cortesi | 2016-05-28 | 1 | -1/+1 |
|/ | | | | | - Decorator for handler methods - Stricter checking for double-acks and non-acks | ||||
* | peer_address -> ip_address | Maximilian Hils | 2016-04-11 | 1 | -3/+3 |
| | |||||
* | Merge pull request #1014 from ikoz/master | Maximilian Hils | 2016-03-17 | 1 | -0/+10 |
|\ | | | | | New option: Add server certs to client chain | ||||
| * | New option: Add server certs to client chain | ikoz | 2016-03-08 | 1 | -0/+10 |
| | | | | | | | | | | | | If enabled, append all server certificates to the certificate chain served to the client, as extras. Can be used to bypass certain certificate pinning impementations. | ||||
* | | use "peer_address" instead of "sock_address" | lilydjwg | 2016-03-15 | 1 | -3/+3 |
| | | |||||
* | | add resolved IP address in "Details" tab | 依云 | 2016-03-10 | 1 | -0/+3 |
|/ | |||||
* | fix #956 | Maximilian Hils | 2016-02-19 | 1 | -5/+1 |
| | |||||
* | combine projects | Maximilian Hils | 2016-02-18 | 1 | -0/+911 |