├── .gitignore ├── LICENSE.txt ├── README.md ├── inform_protocol.md ├── python ├── __init__.py ├── inform.py └── noop_server.py ├── requirements.txt └── reversing_tools ├── parse_mitm.py └── parse_pcap.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .sandbox_name 3 | keystore.py 4 | /data 5 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrute/ubntmfi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrute/ubntmfi/HEAD/README.md -------------------------------------------------------------------------------- /inform_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrute/ubntmfi/HEAD/inform_protocol.md -------------------------------------------------------------------------------- /python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/inform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrute/ubntmfi/HEAD/python/inform.py -------------------------------------------------------------------------------- /python/noop_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrute/ubntmfi/HEAD/python/noop_server.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dpkt==1.8.7 2 | mitmproxy==0.17 3 | pycrypto==2.6.1 4 | -------------------------------------------------------------------------------- /reversing_tools/parse_mitm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrute/ubntmfi/HEAD/reversing_tools/parse_mitm.py -------------------------------------------------------------------------------- /reversing_tools/parse_pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrute/ubntmfi/HEAD/reversing_tools/parse_pcap.py --------------------------------------------------------------------------------