You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Activities PSTN and SIP (org/sipdroid/sipua/ui) allow anyone to perform a
regular phone call. Even an application not owning the permission
android.permission.CALL_PHONE can call ANY number passed in the intent.
(a malicious app could exploit this to start calls to expensive numbers)
Also in the manifest their filters are declared as
<intent-filter>
<action android:name="android.intent.action.SENDTO"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="sms"/>
<data android:scheme="smsto"/>
</intent-filter>
while in the activities the sms/smsto scheme are replaced by 'tel:'.
Is this intended?
Original issue reported on code.google.com by davideg...@gmail.com on 30 Nov 2014 at 7:27
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
davideg...@gmail.com
on 30 Nov 2014 at 7:27The text was updated successfully, but these errors were encountered: