|
| 1 | +# Collection of Device Identifiers |
| 2 | + |
| 3 | +A **device identifier** is any value—hardware-based, platform-provided, or application-generated—that remains stable over time and can be used to uniquely identify a device or user across sessions. These identifiers enable device recognition and long-term correlation of activity, but also introduce significant privacy considerations. |
| 4 | + |
| 5 | +There are typically three families: |
| 6 | + |
| 7 | +## Hardware-Based Identifiers |
| 8 | + |
| 9 | +Hardware identifiers come from the device’s physical components or firmware and usually remain constant for the lifetime of the device. |
| 10 | + |
| 11 | +* **IMEI / MEID**: Unique modem identifiers historically used to identify mobile devices. Access is highly restricted on modern operating systems. |
| 12 | +* **Serial Number**: A unique hardware identifier assigned by the manufacturer. Generally not accessible to normal applications. |
| 13 | + |
| 14 | +## Platform-Provided Identifiers |
| 15 | + |
| 16 | +Operating systems expose identifiers with limited scope or permissions. |
| 17 | + |
| 18 | +* **Android ID**: A stable, app-scoped identifier that persists across reinstalls for the same app and signing key on modern Android versions. |
| 19 | +* **IDFV (Identifier for Vendor)**: An iOS identifier shared across apps belonging to the same vendor, reset only if all of the vendor’s apps are uninstalled. |
| 20 | +* **IDFA (Advertising Identifier)**: A user-resettable identifier used for advertising and analytics, available only with user consent under modern privacy frameworks. |
| 21 | + |
| 22 | +## Application-Generated Identifiers |
| 23 | + |
| 24 | +Applications may generate their own identifiers and store them persistently. |
| 25 | + |
| 26 | +* **Custom UUIDs**: Random identifiers stored in local storage or secure system keychains, potentially surviving app reinstalls. |
| 27 | +* **Derived or hashed identifiers**: Values created by combining device attributes. |
| 28 | + |
| 29 | +These identifiers function as device identifiers if they can be used to correlate user activity over time. |
| 30 | + |
| 31 | +## Privacy & Regulatory Considerations |
| 32 | + |
| 33 | +Under major privacy regulations such as **GDPR**, **CCPA**, and similar frameworks, persistent device identifiers are classified as **personal data** because they allow the identification or tracking of a user or device. Improper handling may violate: |
| 34 | + |
| 35 | +* **Data minimization** |
| 36 | +* **Purpose limitation** |
| 37 | +* **Transparency requirements** |
| 38 | +* **Consent obligations** |
| 39 | + |
| 40 | +Platform policies (e.g., Apple App Store, Google Play) further restrict the use of persistent identifiers for analytics, advertising, or cross-app tracking without explicit user authorization. |
| 41 | + |
| 42 | +## Security & Compliance Implications |
| 43 | + |
| 44 | +Persistent identifiers can be misused for: |
| 45 | + |
| 46 | +* Device fingerprinting |
| 47 | +* Cross-app or cross-service tracking |
| 48 | +* Behavioral profiling |
| 49 | + |
| 50 | +Because of this, they require careful handling and justification for collection. |
0 commit comments