├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── setup.py └── snapception ├── __init__.py ├── command_line.py ├── decrypt_snap.rb └── mitmdump_input.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebradbain/snapception/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebradbain/snapception/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include snapception/decrypt_snap.rb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebradbain/snapception/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebradbain/snapception/HEAD/setup.py -------------------------------------------------------------------------------- /snapception/__init__.py: -------------------------------------------------------------------------------- 1 | import command_line -------------------------------------------------------------------------------- /snapception/command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebradbain/snapception/HEAD/snapception/command_line.py -------------------------------------------------------------------------------- /snapception/decrypt_snap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebradbain/snapception/HEAD/snapception/decrypt_snap.rb -------------------------------------------------------------------------------- /snapception/mitmdump_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebradbain/snapception/HEAD/snapception/mitmdump_input.py --------------------------------------------------------------------------------