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
The listed permissions give access to sensitive user data, and could expose this data. This may also be viewed as a privacy violation or even malware.
Unless required by the App, remove permission requests that are unsafe, unnecessary, or used by known malware. This will ensure that the App is not accessing user private data.
android.permission.READ_PHONE_STATE: This permission allows read only access to phone state. Developers, usually use this permission to detect when the user receives a call. However, this permission also provides the application access to sensitive hardware identifiers such as the IMEI, SimSerialNumber, SubscriberID.
The text was updated successfully, but these errors were encountered:
Thanks @ber4444 , we will take this under advisement. I forget the exact specific thing, but I believe that the permission is included so that we can do thorough network detection, especially on older versions of Android. See the NetworkDetector in the upstream OpenTelemetry repository.
I wonder if this is something that we can turn off by default and require developers to opt-into this feature. That would be a breaking change that could come as a surprise to existing users (and would probably require a major version bump as a result).
Is it not an optional permission in Open telemetry? If not, it should be, and existing users won't notice a thing since they already added this permission, thinking it was mandatory.
The SDK adds this permission here:
splunk-otel-android/splunk-otel-android/src/main/AndroidManifest.xml
Line 6 in a3d3208
It's a security finding with the following notes:
The listed permissions give access to sensitive user data, and could expose this data. This may also be viewed as a privacy violation or even malware.
Unless required by the App, remove permission requests that are unsafe, unnecessary, or used by known malware. This will ensure that the App is not accessing user private data.
android.permission.READ_PHONE_STATE: This permission allows read only access to phone state. Developers, usually use this permission to detect when the user receives a call. However, this permission also provides the application access to sensitive hardware identifiers such as the IMEI, SimSerialNumber, SubscriberID.
The text was updated successfully, but these errors were encountered: