Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | | * | fix default argument | Thomas Kriechbaumer | 2015-05-29 | 1 | -1/+5 | |
| | | | | | | | | | | | | | | | | | | | | Python evaluates default args during method definition. So you get the same dict each time you call this method. Therefore the dict is the SAME actual object each time. | |||||
| | | * | add human_readable() to each frame for debugging | Thomas Kriechbaumer | 2015-05-29 | 2 | -15/+108 | |
| | | | | ||||||
| | | * | test Address __str__ | Thomas Kriechbaumer | 2015-05-29 | 1 | -0/+1 | |
| | |/ | ||||||
| | * | improve travis coding style checks | Thomas Kriechbaumer | 2015-05-29 | 3 | -2/+22 | |
| | | | ||||||
| | * | Satisfy autobots. | Aldo Cortesi | 2015-05-28 | 1 | -1/+2 | |
| | | | ||||||
| | * | Merge branch 'Kriechi-cleanup' | Aldo Cortesi | 2015-05-28 | 32 | -361/+538 | |
| | |\ | ||||||
| | | * | add pep8 autoformat checks to travis | Thomas Kriechbaumer | 2015-05-27 | 3 | -4/+9 | |
| | | | | ||||||
| | | * | cleanup code with autoflake | Thomas Kriechbaumer | 2015-05-27 | 10 | -28/+8 | |
| | | | | | | | | | | | | | | | | run the following command: $ autoflake -r -i --remove-all-unused-imports --remove-unused-variables . | |||||
| | | * | cleanup code with autopep8 | Thomas Kriechbaumer | 2015-05-27 | 27 | -332/+510 | |
| | | | | | | | | | | | | | | | | run the following command: $ autopep8 -i -r -a -a . | |||||
| | * | | Merge pull request #59 from Kriechi/update-tls-defaults | Aldo Cortesi | 2015-05-28 | 2 | -14/+32 | |
| | |\ \ | | | |/ | | |/| | update TLS defaults: signature hash and DH params | |||||
| | | * | update TLS defaults: signature hash and DH params | Thomas Kriechbaumer | 2015-05-27 | 2 | -14/+32 | |
| | |/ | | | | | | | | | | | | | * SHA1 is deprecated (use SHA256) * increase RSA key to 2048 bits * increase DH params to 4096 bits (LogJam attack) | |||||
| | * | Merge pull request #58 from Kriechi/update-openssl | Aldo Cortesi | 2015-05-27 | 2 | -10/+7 | |
| | |\ | | | | | | | | | Update openssl | |||||
| | | * | remove outdated workarounds | Thomas Kriechbaumer | 2015-05-27 | 1 | -8/+4 | |
| | | | | ||||||
| | | * | bump pyOpenSSL and cryptography dependencies | Thomas Kriechbaumer | 2015-05-27 | 1 | -2/+3 | |
| | |/ | ||||||
| | * | Merge pull request #56 from Kriechi/http2-frames | Aldo Cortesi | 2015-05-27 | 5 | -0/+742 | |
| | |\ | | | | | | | | | implement basic HTTP/2 frame classes | |||||
| | | * | implement basic HTTP/2 frame classes | Thomas Kriechbaumer | 2015-05-26 | 5 | -0/+742 | |
| | | | | ||||||
| | * | | Post release version bump. | Aldo Cortesi | 2015-05-26 | 1 | -1/+1 | |
| | |/ | ||||||
| | * | improve displaying tcp addresses | Maximilian Hils | 2015-05-18 | 1 | -1/+4 | |
| | | | ||||||
| | * | release prep: bump version | Aldo Cortesi | 2015-05-18 | 1 | -1/+1 | |
| | | | ||||||
| | * | Zap outdated comment | Aldo Cortesi | 2015-05-16 | 1 | -3/+1 | |
| | | | ||||||
| | * | Zap a left-over test | Aldo Cortesi | 2015-05-05 | 1 | -12/+0 | |
| | | | ||||||
| | * | Add tcp.Reader.safe_read, use it in socks and websockets | Aldo Cortesi | 2015-05-05 | 7 | -62/+80 | |
| | | | | | | | | | | | | | | | | | | safe_read is guaranteed to raise or return a byte string of the requested length. It's particularly useful for implementing binary protocols. | |||||
| | * | websockets: more flexible masking interface. | Aldo Cortesi | 2015-05-01 | 1 | -3/+8 | |
| | | | ||||||
| | * | websockets: A progressive masker. | Aldo Cortesi | 2015-05-01 | 2 | -14/+34 | |
| | | | ||||||
| | * | websockets: more compact and legible human_readable | Aldo Cortesi | 2015-04-30 | 4 | -28/+55 | |
| | | | ||||||
| | * | Add a tiny utility class for keeping bi-directional mappings. | Aldo Cortesi | 2015-04-30 | 5 | -35/+91 | |
| | | | | | | | | | | | | Use it in websocket and socks. | |||||
| | * | testing: http read_request corner case | Aldo Cortesi | 2015-04-30 | 1 | -0/+5 | |
| | | | ||||||
| | * | websockets: nicer frame construction | Aldo Cortesi | 2015-04-24 | 2 | -15/+35 | |
| | | | | | | | | | | | | | | | | | | - Resolve unspecified values on instantiation - Add a check for masking key length - Smarter resolution for masking_key and mask values. Do the right thing unless told not to. | |||||
| | * | websockets: include all header values in frame roundtrip | Aldo Cortesi | 2015-04-24 | 2 | -12/+19 | |
| | | | ||||||
| | * | websockets: remove validation | Aldo Cortesi | 2015-04-24 | 2 | -38/+12 | |
| | | | | | | | | | | | | | | | | | | | | | We don't really need this any more. The interface is much less error prone because bit flags are no longer integers, we have a range check on opcode on header instantiation, and we've deferred length code calculation and so forth into the byte render methods. | |||||
| | * | websocket: interface refactoring | Aldo Cortesi | 2015-04-24 | 3 | -167/+201 | |
| | | | | | | | | | | | | | | | | | | | | | - Separate out FrameHeader. We need to deal with this separately in many circumstances. - Simpler equality scheme. - Bits are now specified by truthiness - we don't care about the integer value. This means lots of validation is not needed any more. | |||||
| | * | websockets: refactor to avoid rundantly specifying payloads and payload lengths | Aldo Cortesi | 2015-04-24 | 2 | -51/+26 | |
| | | | ||||||
| | * | websockets: extract frame header creation into a function | Aldo Cortesi | 2015-04-24 | 2 | -120/+147 | |
| | | | ||||||
| | * | websockets: handshake checks only take headers | Aldo Cortesi | 2015-04-23 | 4 | -40/+24 | |
| | | | ||||||
| | * | websockets: (very) slightly nicer is_valid constraints | Aldo Cortesi | 2015-04-21 | 1 | -5/+3 | |
| | | | ||||||
| | * | websockets: constants, variable names, refactoring | Aldo Cortesi | 2015-04-21 | 2 | -35/+67 | |
| | | | ||||||
| | * | Whitespace, interface simplification | Aldo Cortesi | 2015-04-21 | 2 | -25/+5 | |
| | | | | | | | | | | | | | | | - safe_tobytes doesn't buy us much - move masking key generation inline | |||||
| | * | websockets: refactor to use http and header functions in http.py | Aldo Cortesi | 2015-04-21 | 3 | -194/+152 | |
| | | | ||||||
| | * | Whitespace, indentation, nounce -> nonce | Aldo Cortesi | 2015-04-21 | 3 | -66/+79 | |
| | | | ||||||
| | * | Whitespace, pep8, mixed indentation | Aldo Cortesi | 2015-04-21 | 3 | -19/+74 | |
| | | | ||||||
| | * | Return a named tuple from read_response | Aldo Cortesi | 2015-04-21 | 2 | -6/+20 | |
| | | | ||||||
| | * | Migrate requeset reading from mitmproxy to netlib | Aldo Cortesi | 2015-04-21 | 3 | -3/+195 | |
| | | | ||||||
| | * | Merge pull request #55 from Chandler/websockets | Aldo Cortesi | 2015-04-20 | 2 | -45/+77 | |
| | |\ | | | | | | | | | small websockets cleanup | |||||
| | | * | whitespace | Chandler Abraham | 2015-04-19 | 1 | -2/+1 | |
| | | | | ||||||
| | | * | remove subproject commit | Chandler Abraham | 2015-04-19 | 1 | -6/+0 | |
| | | | | ||||||
| | | * | fixing test coverage, adding to_file/from_file reader writes to match socks.py | Chandler Abraham | 2015-04-19 | 3 | -45/+84 | |
| | |/ | ||||||
| | * | Websockets: reorganise | Aldo Cortesi | 2015-04-20 | 4 | -98/+90 | |
| | | | | | | | | | | | | | | | - websockets.py to top-level - implementations into test suite | |||||
| | * | Merge branch 'master' of github.com:mitmproxy/netlib | Maximilian Hils | 2015-04-17 | 13 | -24/+1088 | |
| | |\ | ||||||
| | | * | websockets: more whitespace, WebSocketFrame -> Frame | Aldo Cortesi | 2015-04-17 | 3 | -76/+81 | |
| | | | | ||||||
| | | * | websockets: whitespace, PEP8 | Aldo Cortesi | 2015-04-17 | 1 | -73/+96 | |
| | | | |