mitmproxy / mitmweb

GSoC Issue tracking for mitmweb.
11 stars 3 forks source link

Options Editor #41

Open mhils opened 7 years ago

mhils commented 7 years ago

Mitmproxy recently got a new option management system with a brand new option editor. Needless to say, we should add the same thing to mitmweb. This would bring most of mitmproxy's features to mitmweb, until we find time to develop better UIs for some of them.

mhils commented 7 years ago

We have a whole bunch of subtasks here:

mhils commented 7 years ago

GET /options

JSON Format should probably look like this:

[
    {name: "anticache", type: "bool", default: false, value: true, help: "help text"},
    {name: "intercept", type: "str", default: null, value: null, help: "help text"},
    ....
]

Helpful pointers: