aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/tools
Commit message (Collapse)AuthorAgeFilesLines
* Fix #4010. Options modal in the mitmweb page no longer overflows the y axis. ↵V S Sreejeet2020-06-121-1/+1
| | | | | (#4014) don't overflow options dialog, fix #4010
* Support using `wslview` as a browser to open web urlGareth Jones2020-06-121-1/+1
|
* Add a space after prefilled console command string (#3985)| |三 \/ | |\|2020-05-081-0/+2
| | | Add a space after console command string
* Revert view_tcp_stream to List[bytes] implementationNikita Stupin2020-05-031-20/+14
|
* Remove blank linesNikita Stupin2020-05-021-1/+0
|
* Add contentview status bar to TCP flow detailsNikita Stupin2020-05-021-0/+23
|
* Colorize arrows!Nikita Stupin2020-05-022-2/+21
|
* Change arrow styleNikita Stupin2020-05-022-2/+6
|
* Merge adjacent TCP "messages"Nikita Stupin2020-05-021-5/+26
|
* Integrate contentviews to TCP flow detailsNikita Stupin2020-05-011-18/+13
|
* Merge pull request #3929 from sarthak212/colorizejsonMaximilian Hils2020-04-191-0/+23
|\ | | | | colorize json
| * colorize jsonroot2020-04-191-0/+23
| |
* | Merge pull request #3927 from mhils/tcp-uiMaximilian Hils2020-04-186-302/+541
|\ \ | | | | | | add tcp flow ui
| * | lint, mypy, tests++Maximilian Hils2020-04-122-16/+24
| | |
| * | add very simply tcp detailviewMaximilian Hils2020-04-124-29/+94
| | |
| * | fixup flow renderingMaximilian Hils2020-04-125-316/+424
| | | | | | | | | | | | | | | | | | this was a convoluted mess before and a nightmare to maintain. the new implementation is a bit more verbose, but it can be type-checked for errors.
| * | Display TCP flows at flow list!Nikita Stupin2020-04-101-0/+58
| | |
* | | add message to logroot2020-04-161-1/+2
| | |
* | | add message to mitmdumproot2020-04-151-0/+1
| |/ |/|
* | reduce set of common keysMaximilian Hils2020-04-111-2/+2
| | | | | | | | - You've already figured out `?` when you see this, so why mention it. - `Q` isn't that important, pressing `q` multiple times is good enough.
* | space issueroot2020-04-111-2/+2
| |
* | add common keybindingsroot2020-04-114-10/+23
|/
* #3911 Support keybinding for different contexts with different commandsKevin Cui2020-04-071-1/+1
|
* Rename web-iface to web-hostLucas Ramage2020-04-053-6/+6
| | | | Bug: https://github.com/mitmproxy/mitmproxy/issues/3891
* finish FIXME: move open_browser() to addon/browser (#3832)naivekun2020-03-082-36/+41
|
* update compiled mitmweb assets, fix #3822Maximilian Hils2020-02-211-1/+1
|
* Fix wording for ssl_insecure option on mitmwebFerenc soós2020-01-201-1/+1
|
* remove status_message.send where log.error has the same effectItai Sadan2020-01-182-12/+4
|
* fix missing error to event log in commandexecutor.pyItai Sadan2020-01-181-2/+5
|
* Expose CommandManager.call_strings and use it in consoleaddons.pyItai Sadan2020-01-181-13/+19
| | | | This avoids the whole quote/unquote issue.
* consoleaddons.py - add command_lexer.quote where it seems relevantItai Sadan2020-01-181-7/+9
|
* Fix command quotes and error loggingItai Sadan2020-01-171-3/+4
| | | | | | Fixes error when trying to manually set "multipart form" view. Also fixes "(more in eventlog)" prompt where nothing is written to the event log.
* Exit on SIGTERM instead of promptingThinkChaos2020-01-111-6/+6
|
* fix: ValueError: math domain error" in table mode when displaying a server ↵Yoann Lamouroux2020-01-101-1/+1
| | | | replay flow #3778
* enable UTF-8 icons for WSLMaximilian Hils2019-12-271-1/+1
| | | | | | conhost.exe supports UTF-8 nowadays, even though there is no font fallback and your font needs to have the appropriate glyphs (DejaVu works, for example). The new "Windows Terminal" application has a revamped font renderer and just works.
* [web] update compiled assetsMaximilian Hils2019-12-123-5/+5
|
* fix #3722Maximilian Hils2019-12-121-5/+11
|
* Merge pull request #3724 from typoon/command-history-fileMaximilian Hils2019-12-123-53/+31
|\ | | | | Save user executed commands to a history file
| * Making linter happyHenrique2019-11-271-1/+0
| |
| * Merge branch 'command-history-file' of github.com:typoon/mitmproxy into ↵Henrique2019-11-272-12/+8
| |\ | | | | | | | | | command-history-file
| | * simplify command history addonMaximilian Hils2019-11-262-12/+8
| | |
| * | Merge branch 'mitmproxy-improve-commander' of github.com:typoon/mitmproxy ↵Henrique2019-11-271-7/+42
| |\ \ | | |/ | |/| | | | into command-history-file
| * | Fixing it back to what it wasHenrique2019-11-251-5/+6
| | |
| * | Moved confdir check logic into the addonHenrique2019-11-251-12/+2
| | |
| * | Fixed the logic according to some tests, added new testsHenrique2019-11-242-6/+26
| | |
| * | Making the linter happyHenrique2019-11-232-6/+1
| | |
| * | Fix to create the confdir in case it doesn't existHenrique2019-11-231-7/+20
| | |
| * | Moved command history to an addon and added a new feature:Henrique2019-11-232-85/+15
| | | | | | | | | | | | | | | * If you start typing a command and press "up" only commands starting with that string will be returned
| * | Implemented feature to save command history to a file. This allows usersHenrique2019-11-221-5/+41
| | | | | | | | | | | | to reuse their commands the next time they open mitmproxy
* | | Add flow to ContentView metadataYoav Shai2019-12-063-3/+3
| |/ |/|