Last modified on 6 March 2019, at 21:36
Fixme.ch:OldWiki/Android Lab
Goals
- Extract all application packages from the Market
- Run batch tests (fuzzing, targeted attack) on a application subset
TODO
- Create a FIXME google account (something less obvious than fixme@gmail.com :D)
Harvest APK
Attack surfaces
Misc
Bind to service
- Extract all apps with a private service using AIDL
- Decompile apk and resources
- Modify AndroidManifest.xml so the Service is exported
- Save the Service interface file (.aidl)
- Repackage application and resource
- Create a 3rd party app accessing the service methods
Broadcast Intents
- Extract AndroidManifest.xml data to find interesting Intent Filters
- Create an application implementing all possible filters (type, data, categories)
- Eavesdrop broadcasted intent, handle them before the supposed activity, replay (DoS)
Other
Unlock screen
- mashing button
- Back button
- Car dock
- gmail null password
To test