-
Notifications
You must be signed in to change notification settings - Fork 12
Broadcast_Receivers
mzfr edited this page May 23, 2021
·
3 revisions
They are responsible for providing you all the notifications that you get. Also sometimes they pass around bits and pieces of information to other/multiple applications.
run [app.broadcast.info](http://app.broadcast.info) -a <package-name>
- Broadcasts are sent via
sendBroadcast()
and what will be done on that broadcast will be determined byonReceive()
method. - There are broadcasts receivers that gets registered at runtime so drozer will not report them and you'll have to find them manually.
-
registerReceiver()
- This is the method name.
-
- It's possible that a activity have a intent filter. Now if we pass the intent via a broadcast it's possible that activity might get provoked.
- Only happens when it's set to
exported=True
or you have root permission(N/A)
- Only happens when it's set to
- We can also try to sniff the broadcasts.
run app.broadcast.sniff -a <action/intent>
- Capture the flag(CTF)
- Making a boot2root VM
- BugBounty notes for Android
- BugBounty notes for WEB
- Starting with (n)vim
- Bluetooth(nothing big)
- Hacking boot2root/ OSCP notes