From 510f6641d2c679c96b9b88d357eb332f58d5e108 Mon Sep 17 00:00:00 2001 From: ColoursofOSINT <130006229+ColoursofOSINT@users.noreply.github.com> Date: Thu, 31 Aug 2023 22:14:43 +0000 Subject: [PATCH] Update 2023-08-30-Android-Fingerprinting-With-Wallpapers.md --- _posts/2023-08-30-Android-Fingerprinting-With-Wallpapers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/2023-08-30-Android-Fingerprinting-With-Wallpapers.md b/_posts/2023-08-30-Android-Fingerprinting-With-Wallpapers.md index 70fa3eb4255..bac20c10e8b 100644 --- a/_posts/2023-08-30-Android-Fingerprinting-With-Wallpapers.md +++ b/_posts/2023-08-30-Android-Fingerprinting-With-Wallpapers.md @@ -19,13 +19,13 @@ Fortunately, in devices running Android 8.1 and later, the call now requires the # The Math For each of the three most common hues, there are 256 combinations for each RGB value, for a total of 2^24 combinations per color. -$$ {(256)^3} = 2^(24) $$ +$$ {(256)^3} = 2^{24} $$ With three colors per image, there are are 2^72 possible values, for maximum of 2^144 combinations (with 2 different wallpapers). -$$ {(2^24)^3} = 2^(72) $$ +$$ {(2^{24})^3} = 2^{72} $$ -$$ {(2^24)(2)} = 2^(144) $$ +$$ {(2^{24})(2)} = 2^{144} $$ This information is provided as 144 bits, which can be used as a direct identifer, or inputed to create a SHA-256 hash, as in the case of the trial application created by Fingerprint. The application compares the hashes to other submitted hashes to determine the uniqueness or the device based solely on the wallpaper. Thankfully, such fingerprinting is defeatable - as explained by Fingerprint – by keeping the default wallpaper, or setting it to completely black (as in the case of GrapheneOS) to provide anonymity. You can try the application and read more [here](https://fingerprint.com/blog/how-android-wallpaper-images-threaten-privacy/).