Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| from mitmproxy import http | |
| from mitmproxy.net.http import cookies | |
| from mitmproxy.utils import strutils | |
| from datetime import datetime | |
| import csv | |
| import base64 | |
| import json | |
| REQUESTS_LOG = 'requests.mitm.csv' | |
| RESPONSES_LOG = 'responses.mitm.csv' |
| #!/usr/bin/python | |
| import sys | |
| class Node(object): | |
| def __init__(self): | |
| pass | |
| class TextNode(Node): | |
| def __init__(self, text = ''): | |
| Node.__init__(self) |
| #!/usr/bin/env python3 | |
| # | |
| # This is a simple script to encrypt a message using AES | |
| # with CBC mode in Python 3. | |
| # Before running it, you must install pycryptodome: | |
| # | |
| # $ python -m pip install PyCryptodome | |
| # | |
| # Author.: José Lopes | |
| # Date...: 2019-06-14 |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000rsync (Everyone seems to like -z, but it is much slower for me)