Screen Sharing Detection

Android devices are capable of sharing (mirroring) their screen with another display. A screen can be shared either wirelessly or using a cable. Screen sharing can, however, pose a security risk, as sensitive information might be leaking from app screens.

Malwarelytics for Android is able to detect that the screen is being shared and can be configured to terminate the app in such a case.

Configuration

This feature can be configured during the Malwarelytics initialization phase:

val raspConfig = RaspConfig.Builder()
    .screenSharing(DetectionConfig)
    // configuration of other RASP features
    .build()

Available values of DetectionConfig:

Value Description
NoAction indicates that screen sharing will not be automatically detected. A manual check is still possible.
Notify indicates that screen sharing will be automatically detected and observers will be notified.
Exit(
exitUrl: String?)
indicates that screen sharing will be automatically detected and the app will be terminated when a screen sharing or a transient change of display addition is automatically detected.

Screen sharing detection defaults to DetectionConfig.Notify.

List of available parameters for some config values:

Parameter Description
exitUrl: String? defines the URL to be opened when the app is terminated because of the automatic detection. Defaults to null.

Usage

After initialization, the screen sharing detection feature can be accessed via RaspManager. This can be used to register an observer or to trigger a manual screen sharing detection check.

Registering an Observer

The screen sharing detection can trigger a certain action. To achieve that, an observer needs to be configured and registered.

Observer configuration:

val raspObserver = object : RaspObserver {
    override fun onScreenSharingDetected(screenSharingDetection: ScreenSharingDetection) {
        // handle screen sharing detection
    }
    // handle detection of other RASP features
}

The observer can be registered in RaspManager. When it is no longer needed, it can be unregistered again.

raspManager.registerRaspObserver(raspObserver)
raspManager.unregisterRaspObserver(raspObserver)

The ScreenSharingDetection data class contains the following properties:

Property Description
isProblematic: Boolean indicates whether the detection result is problematic for the app. A problematic detection means that a screen is being shared (isScreenShared is true) or a display has just been added transientData property contains TransientScreenSharingData.displayChange set to DISPLAY_ADDITION).
isScreenShared: Boolean indicates whether a device screen is currently being shared (mirrored) elsewhere.
numberOfDisplays: Int indicates the number of detected displays on which the content is displayed.
androidAutoDetection: AndroidAutoDetection contains Android Auto detection data (contents described in Android Auto Detection Data.
transientData: TransientScreenSharingData? contains transient data that contain information about detected transient changes (more detail in Transient Detection Data.
isTransientChange: Boolean indicates whether the detection result signifies a transient change. That means transientData indicates either display addition or display removal.

The nested ScreenSharingDetection.TransientScreenSharingData data class contains the following properties:

Property Description
displayChange: DisplayChange indicates the type of display change that occurred - either a display addition or a display removal.
displayId: Int contains the ID of the added or removed display.

Available values of ScreenSharingDetection.DisplayChange

Value Description
DISPLAY_ADDITION A display was added.
DISPLAY_REMOVAL A display was removed.

Triggering a Manual Check

The screen sharing detection check can be triggered manually in RaspManager. Two methods are available – isScreenShared() gives a simple boolean answer, whereas getScreenSharingDetection() provides more details.

val screenSharingDetection: ScreenSharingDetection = raspManager.getScreenSharingDetection()
val isScreenShared: Boolean = raspManager.isScreenShared()

Transient Detection Data

Detection data provided by the screen sharing detection feature are of two kinds - non-transient and transient. Non-transient data are both delivered via the RaspObserver.onScreenSharingDetected(ScreenSharingDetection) callback and can be queried via methods provided by the RaspManager. On the other hand, transient data are only delivered via the above-mentioned observer method. Transient data cannot be manually queried (and verified).

Unfortunately, screen sharing performed by some applications generates only transient data, which is either the detection of an added display or a removed display. These are typically virtual displays created by other apps.

The returned data class ScreenSharingDetection contains the isScreenShared: Boolean property that is the primary indicator of a shared screen. This property contains only non-transient data. Some detections contain transient data in the transientData property.

As a simplification, the ScreenSharingDetection also contains isProblematic: Boolean and isTransientChange: Boolean properties. The first indicates whether the screen is being shared or a display was just added. The second indicates whether the detection contains a transient change. The transientData property contains information about the added or removed display.

Android Auto Detection

Android Auto detection data were added to the screen sharing detection data. These data are non-transient. They are both delivered in the observer callback and can be queried manually. They can also be queried independently (more detail in Android Auto Detection documentation).

Changes to the Android Auto connection also trigger the observer callback for screen sharing detection.

More information on general RASP feature configuration and usage can be found in this overview.

Last updated on Apr 01, 2025 (08:56) View product
Search

develop

Malwarelytics for Android