-
Notifications
You must be signed in to change notification settings - Fork 0
Broadcast Receivers
Paradis Perdu edited this page Feb 27, 2019
·
1 revision
- Review the androidmanifest.xml for broadcast receivers
- Are they exported?
- What custom permissions are enforced?
- You might need to reverse engineer the class to figure out what the receiver is expecting
run app.broadcast.info -a com.your.app
run app.broadcast.send --action theBroadcast --extra string <string value> --extra string <string value 2>
If intents are broadcast without setting a permission, they can be monitored by drozer
run app.broadcast.sniff --action theBroadcast
adb shell am broadcast com.your.app.intent.INTENT --es blah "string" -n com.your.app/.yourBroadcastReceiver