aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/io
Commit message (Collapse)AuthorAgeFilesLines
* update mypyMaximilian Hils2019-11-121-5/+5
|
* session: implemented filter and refilter. Ready for testing implementationmadt1m2018-08-011-0/+2
|
* protobuf: changed return type annotation in loads to enhance granularitymadt1m2018-08-011-1/+1
|
* Merge pull request #3252 from madt1m/session-dbPietro Francesco Tirenna2018-07-241-0/+20
|\ | | | | Session - Hybrid DB
| * session: modified schema. Now SessionDB uses tempfile module for temp sessionmadt1m2018-07-241-21/+15
| |
| * session: Implemented SessionDB Schemamadt1m2018-07-201-0/+26
| |
* | protobuf: tests implemented, full coveragePietro Francesco Tirenna2018-07-175-61/+49
| |
* | Timestamps are now double instead of floatmadt1m2018-06-302-25/+25
| |
* | more bug fixes in DB classmadt1m2018-06-301-4/+0
| |
* | bug fixmadt1m2018-06-301-0/+1
| |
* | new protobuf loads has almost the same result of FlowReader streammadt1m2018-06-301-1/+8
| |
* | Loads yields now an HTTP objectmadt1m2018-06-301-14/+25
| |
* | Completed untested version of object loadingmadt1m2018-06-301-99/+93
| |
* | Refactored naming strategyPietro Francesco Tirenna2018-06-281-18/+18
| |
* | Improved parsing mechanism for better readabilitymadt1m2018-06-231-12/+26
| |
* | Fixed bugs in parsing HTTPFlow objectsmadt1m2018-06-231-19/+28
| |
* | New explicit parsing HTTPFlow into proto native object. Viceversa not yet ↵madt1m2018-06-233-9/+185
| | | | | | | | implemented.
* | Fixed a bug in protobuf loading -> no returnmadt1m2018-06-232-1/+3
| |
* | Hooking the view to load from new DB handlermadt1m2018-06-232-7/+18
| |
* | Added protobuf methods; implemented initial DB logicmadt1m2018-06-235-60/+862
| |
* | Added initial protobuf definitionsmadt1m2018-06-224-0/+100
|/
* fix Python 3.6 variable type annotations #3053oscure762018-04-143-5/+5
|
* Misc. typosluz.paz2018-02-241-1/+1
| | | | | | | | | | | | | | Found via `codespell -q 3 -I ../mitmproxy-word-whitelist.txt` Where whitelist contains: ``` cas doubleclick nd ot seeked statics te thru ```
* store ClientHello extensions with client connectionMaximilian Hils2018-01-131-6/+5
|
* avoid TLS/SSL ambiguity for Cert classThomas Kriechbaumer2018-01-071-2/+2
|
* rename TLS/SSL-related attributesThomas Kriechbaumer2018-01-061-0/+26
| | | | | | SSL is an outdated protocol superseeded by TLS. Although the commonly used library is called OpenSSL, it is no reason to still use outdated language for attributes.
* Fixes #2495Ujjwal Verma2017-08-101-1/+1
|
* Changes in setup.cfgUjjwal Verma2017-05-121-1/+1
|
* Increase io.compat coverageUjjwal Verma2017-05-121-0/+17
|
* tox: mypy checking for entire codebaseAldo Cortesi2017-03-221-1/+1
| | | | Also fix a few linting errors.
* Make tnetstrings pass mypyAldo Cortesi2017-03-201-10/+10
| | | | | | | | Mypy doesn't support recursive types yet, so we can't properly express TSerializable nested structures. For now, we just disable type checking in the appropriate locations. https://github.com/python/mypy/issues/731
* Factor out an io moduleAldo Cortesi2017-03-204-0/+558
Include tnetstring - we've made enough changes that this no longer belongs in contrib.