mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +00:00
9 lines
212 B
Python
Executable file
9 lines
212 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
from mitmproxy import flowfilter
|
|
|
|
|
|
print("<table class=\"table filtertable\"><tbody>")
|
|
for i in flowfilter.help:
|
|
print("<tr><th>%s</th><td>%s</td></tr>" % i)
|
|
print("</tbody></table>")
|