├── .gitignore ├── LICENSE ├── README.md ├── frida_push ├── __init__.py └── command.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerPlatform/frida-push/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerPlatform/frida-push/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerPlatform/frida-push/HEAD/README.md -------------------------------------------------------------------------------- /frida_push/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerPlatform/frida-push/HEAD/frida_push/__init__.py -------------------------------------------------------------------------------- /frida_push/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerPlatform/frida-push/HEAD/frida_push/command.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerPlatform/frida-push/HEAD/setup.py --------------------------------------------------------------------------------