Skip to content

Commit

Permalink
Fix non-protected broadcasts sent from phone process.
Browse files Browse the repository at this point in the history
Intents broadcasted from system internals should be
protected inorder to avoid security holes. So fix is
to make the phone process intents broadcasted from
proprietary space to be protected.

Change-Id: Ie9cf2e5923b8a52e9b3ba91e9e9c3d649aae9fca
CRs-Fixed: 2128245
  • Loading branch information
Umashankar Godachi authored and Darkstar085 committed Oct 10, 2019
1 parent e2f4209 commit 9a5d08f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,16 @@
<!-- For Vendor Debugging in Telephony -->
<protected-broadcast android:name="android.telephony.action.ANOMALY_REPORTED" />

<protected-broadcast android:name= "codeaurora.intent.action.ACTION_LTE_CONFIGURE" />
<protected-broadcast android:name= "codeaurora.intent.action.ACTION_MANAGED_ROAMING_IND" />
<protected-broadcast android:name= "org.codeaurora.intent.action.ACTION_DDS_SWITCH_DONE" />
<protected-broadcast android:name= "org.codeaurora.intent.action.ACTION_NETWORK_SPECIFIER_SET" />
<protected-broadcast android:name= "org.codeaurora.intent.action.ACTION_RADIO_CAPABILITY_UPDATED" />
<protected-broadcast android:name= "org.codeaurora.intent.action.ACTION_SET_PRIMARY_CARD_DONE" />
<protected-broadcast android:name= "org.codeaurora.intent.action.ACTION_UICC_MANUAL_PROVISION_STATUS_CHANGED" />
<protected-broadcast android:name= "org.codeaurora.intent.action.PRIMARY_CARD_CHANGED_IN_SERVICE" />
<protected-broadcast android:name= "org.codeaurora.intent.action.SUBSCRIPTION_INFO_RECORD_ADDED" />

<uses-permission android:name="android.permission.BROADCAST_STICKY" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.CALL_PRIVILEGED" />
Expand Down

0 comments on commit 9a5d08f

Please sign in to comment.