Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Localise client connection object manipulation. | Aldo Cortesi | 2012-06-10 | 1 | -12/+16 | |
| | | | | This simplifies the call signature for a bunch of functions. | |||||
* | Add HTTP version to response objects. | Aldo Cortesi | 2012-06-10 | 3 | -5/+6 | |
| | | | | Another change in the serialization format. | |||||
* | Refactoring of proxy.py | Aldo Cortesi | 2012-06-10 | 2 | -6/+14 | |
| | | | | | - Correctly pass HTTP request version on to upstream servers - Adjust tests not to hang due to a pathod response with no content-length | |||||
* | Add HTTP version to flow.Request | Aldo Cortesi | 2012-06-10 | 3 | -12/+13 | |
| | | | | | This is a serialization format change, that makes us incompatible with previous versions. | |||||
* | Consolidate HTTP major and minor versions into a single variable. | Aldo Cortesi | 2012-06-10 | 1 | -10/+7 | |
| | ||||||
* | Add proxy.should_connection_close, and strip out unused code. | Aldo Cortesi | 2012-06-10 | 1 | -27/+9 | |
| | ||||||
* | Reverse proxy testing. | Aldo Cortesi | 2012-06-09 | 2 | -15/+43 | |
| | ||||||
* | Move from requests to human_curl. | Aldo Cortesi | 2012-06-09 | 1 | -9/+12 | |
| | | | | | It turns out that _none_ of the Python stdlib or anything that relies on it supports CONNECT through a proxy. Beggars belief, but there you go. | |||||
* | Nose mopup: docs, no cover pragmas, a few missing path specs. | Aldo Cortesi | 2012-06-09 | 2 | -2/+2 | |
| | ||||||
* | Port mitmproxy test suite entirely to nose. | Aldo Cortesi | 2012-06-09 | 13 | -490/+401 | |
| | ||||||
* | Move pathod service testing truss to nose. | Aldo Cortesi | 2012-06-09 | 2 | -43/+32 | |
| | ||||||
* | Start conversion to nose. | Aldo Cortesi | 2012-06-09 | 4 | -173/+178 | |
| | | | | RIP pry. | |||||
* | Shift mitmproxy test suite over to pathod. | Aldo Cortesi | 2012-06-08 | 6 | -161/+52 | |
| | | | | This opens a whole brave new world of testing for mitmproxy. | |||||
* | Split parsing of intial line into separate protocols. | Aldo Cortesi | 2012-06-03 | 1 | -0/+52 | |
| | ||||||
* | Add unit tests for console/help.py | Aldo Cortesi | 2012-06-03 | 1 | -0/+25 | |
| | ||||||
* | Fix a crashing bug when replacing text in a flow with unicode bodies. | Aldo Cortesi | 2012-05-25 | 2 | -0/+10 | |
| | ||||||
* | Refuse to replay a request with missing content. | Aldo Cortesi | 2012-05-16 | 1 | -0/+10 | |
| | ||||||
* | Add the ability to flag content as missing in a request or a response. | Aldo Cortesi | 2012-05-16 | 1 | -0/+6 | |
| | | | | | | | We'll use this in a number of situations. First, we'll soon have response streaming that directly pipes responses to clients. These will be content-less from mitmproxy's perspective. Second, we'll be growing new events that fire after headers are received, but before content is read. | |||||
* | Internal error page for WSGI. | Aldo Cortesi | 2012-04-27 | 1 | -5/+61 | |
| | | | | Also, 100% test coverage. | |||||
* | Add a WSGI adapter that lets us serve a WSGI app out of mitmproxy. | Aldo Cortesi | 2012-04-24 | 2 | -0/+70 | |
| | | | | | | | | This commit adds: - A WSGI App adapter for mitmproxy - An app registry in the proxy instance that lets us link WSGI apps with (hostname, port) combinations. - Fixes for a number of bugs discovered while creating this feature. | |||||
* | Serialized data version check. | Aldo Cortesi | 2012-04-11 | 1 | -1/+12 | |
| | ||||||
* | Add an "f" shortcut key to load full body contents. | Aldo Cortesi | 2012-04-08 | 1 | -32/+39 | |
| | ||||||
* | XML/HTML pretty view tweaks. | Aldo Cortesi | 2012-04-07 | 1 | -8/+7 | |
| | ||||||
* | Integrate lxml for pretty-printing HTML and XML. | Aldo Cortesi | 2012-04-07 | 2 | -61/+20 | |
| | | | | | Tackling the pretty-printing performance problem head-on, at the cost of a major dependency. | |||||
* | Serialize requestcount for ClientConnect objects. | Aldo Cortesi | 2012-04-03 | 1 | -1/+2 | |
| | ||||||
* | Add a details page, available from a flow view with the 'X' shortcut | Aldo Cortesi | 2012-04-03 | 1 | -0/+1 | |
| | | | | | At the moment, this shows the upstream SSL certificate details. More fine-grained detail that doesn't fit in the flow view itself will be added. | |||||
* | Minor unit test bump. | Aldo Cortesi | 2012-04-03 | 2 | -2/+10 | |
| | ||||||
* | Add accessor method for SSLCert object on Response. | Aldo Cortesi | 2012-04-02 | 1 | -0/+7 | |
| | ||||||
* | Expand SSL cert support | Aldo Cortesi | 2012-04-02 | 5 | -7/+20 | |
| | | | | | | - Capture the remote SSL certificate - Expose the remote cert as an attribute on Response - Expand the certutils.SSLCert interface to expose more cert info | |||||
* | Refactor proxy.Server to fix a crash when replaying with -n | Aldo Cortesi | 2012-04-02 | 1 | -2/+2 | |
| | ||||||
* | Start rationalizing content views. | Aldo Cortesi | 2012-04-02 | 1 | -23/+11 | |
| | | | | | | We now no longer have distinction between "pretty" view and hex/raw. Instead, we simply a default AUTO view with a global override (M) and a local override (m). | |||||
* | Make "T" pretty view over-ride persistent when switching between flows. | Aldo Cortesi | 2012-04-02 | 1 | -2/+14 | |
| | | | | | We do this by adding a flow settings mechanism to ConsoleState. This is pretty rough at the moment and should become more sophisticated as needed. | |||||
* | Add a variant of cleanBin that escapes newlines and tabs. | Aldo Cortesi | 2012-03-27 | 1 | -0/+10 | |
| | | | | Use this to fix the hex display option. | |||||
* | Add a pretty-viewer for images. | Aldo Cortesi | 2012-03-26 | 6 | -0/+7 | |
| | | | | | This shows basic image information like dimensions, plus extracted EXIF tags and other metadata. | |||||
* | Pretty view now indents Javascript. | Aldo Cortesi | 2012-03-25 | 1 | -1/+6 | |
| | | | | Thanks to the JSBeautifier project, which is now included in the contrib directory. | |||||
* | Re-enable simple multipart form parsing and preview. | Aldo Cortesi | 2012-03-25 | 1 | -0/+26 | |
| | ||||||
* | Refactor pretty view mechanism. | Aldo Cortesi | 2012-03-24 | 2 | -0/+140 | |
| | | | | Also start adding unit tests for this subsystem. | |||||
* | Add error indications to GridEditor. | Aldo Cortesi | 2012-03-23 | 1 | -0/+4 | |
| | ||||||
* | Add a simple parser for content type specifications. | Aldo Cortesi | 2012-03-20 | 1 | -0/+11 | |
| | ||||||
* | Generalize GridEditor to N columns. | Aldo Cortesi | 2012-03-18 | 1 | -4/+7 | |
| | | | | Start adding a replacement rule editor. | |||||
* | Add specification of replacement patterns on the command line. | Aldo Cortesi | 2012-03-17 | 2 | -0/+62 | |
| | ||||||
* | Hooks -> ReplaceHooks | Aldo Cortesi | 2012-03-17 | 1 | -20/+23 | |
| | | | | | It makes more sense to specialize this, which will let me build a nicer interface for replacement hooks in mitmproxy. | |||||
* | Add a hooks mechanism, based on filter expressions. | Aldo Cortesi | 2012-03-16 | 1 | -0/+35 | |
| | ||||||
* | replace() methods now decode and re-encode contents before substitution. | Aldo Cortesi | 2012-03-16 | 1 | -0/+18 | |
| | ||||||
* | Add a decoded context manager. | Aldo Cortesi | 2012-03-16 | 1 | -0/+24 | |
| | | | | | | | | | This simplifies a common chore when modifying traffic - decoding the object, modifying it, then re-encoding it with the same encoding afterwards. You can now simply say: with flow.decoded(request): request.content = "bar" | |||||
* | Cleanliness fixes. | Aldo Cortesi | 2012-03-12 | 1 | -0/+1 | |
| | | | | | - Remove unused code during previous commit. - Code coverage fixes. | |||||
* | Merge remote-tracking branch 'taiste/server-replay-pop' | Aldo Cortesi | 2012-03-10 | 1 | -6/+18 | |
|\ | ||||||
| * | Added tests for ServerPlaybackState with nopop | Valtteri Virtanen | 2012-03-05 | 1 | -0/+12 | |
| | | ||||||
| * | Fixed old tests | Valtteri Virtanen | 2012-03-05 | 1 | -6/+6 | |
| | | ||||||
* | | Create an SSL certificate class. | Aldo Cortesi | 2012-03-05 | 1 | -8/+6 | |
|/ |