├── .drozer_repository ├── .gitignore ├── Makefile ├── README.md ├── __init__.py ├── kernelerror ├── __init__.py └── tools │ ├── __init__.py │ └── misc │ ├── __init__.py │ └── installcert.py ├── meatballs1 ├── __init__.py └── auxillary │ ├── __init__.py │ └── port_forward.py ├── metall0id ├── __init__.py └── post │ ├── __init__.py │ ├── call.py │ ├── clipboard.py │ ├── contacts.py │ ├── location │ ├── .drozer_package │ ├── LocationHelper.java │ ├── __init__.py │ └── location.py │ ├── microphone.py │ ├── sms.py │ └── start_installed_drozer.py ├── mwrlabs ├── __init__.py ├── develop.py ├── urls.py └── virustotal.py ├── rebuild └── serve /.drozer_repository: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kernelerror/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kernelerror/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kernelerror/tools/misc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kernelerror/tools/misc/installcert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/kernelerror/tools/misc/installcert.py -------------------------------------------------------------------------------- /meatballs1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meatballs1/auxillary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meatballs1/auxillary/port_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/meatballs1/auxillary/port_forward.py -------------------------------------------------------------------------------- /metall0id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metall0id/post/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metall0id/post/call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/metall0id/post/call.py -------------------------------------------------------------------------------- /metall0id/post/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/metall0id/post/clipboard.py -------------------------------------------------------------------------------- /metall0id/post/contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/metall0id/post/contacts.py -------------------------------------------------------------------------------- /metall0id/post/location/.drozer_package: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metall0id/post/location/LocationHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/metall0id/post/location/LocationHelper.java -------------------------------------------------------------------------------- /metall0id/post/location/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metall0id/post/location/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/metall0id/post/location/location.py -------------------------------------------------------------------------------- /metall0id/post/microphone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/metall0id/post/microphone.py -------------------------------------------------------------------------------- /metall0id/post/sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/metall0id/post/sms.py -------------------------------------------------------------------------------- /metall0id/post/start_installed_drozer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/metall0id/post/start_installed_drozer.py -------------------------------------------------------------------------------- /mwrlabs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mwrlabs/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/mwrlabs/develop.py -------------------------------------------------------------------------------- /mwrlabs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/mwrlabs/urls.py -------------------------------------------------------------------------------- /mwrlabs/virustotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/mwrlabs/virustotal.py -------------------------------------------------------------------------------- /rebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/rebuild -------------------------------------------------------------------------------- /serve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/drozer-modules/HEAD/serve --------------------------------------------------------------------------------