Summary:

  • US courts have received over 130 requests from law enforcement to access push notification data from phones, reported the Washington Post.
  • This data can reveal a user’s location, device details, IP address, and more, even if they use encrypted messaging apps.
  • This raises concerns about privacy, as prosecutors and foreign governments could potentially access this data for various reasons.
  • While Apple and Google are promising more transparency regarding data requests, security experts highlight the potential for abuse by governments and marketing organizations.

Key Points:

  • Push notification metadata includes information like the app receiving the notification, timestamp, and network details.
  • This data is not encrypted and can be used to track user movements and activity.
  • Law enforcement can use this data for investigations, but it also raises concerns about potential misuse by other parties.
  • Experts recommend increased awareness about the information users share through push notifications and the potential privacy risks involved.
  • JackGreenEarth
    link
    fedilink
    English
    164 months ago

    Why is this connected to the Internet? Aren’t the notifications coming directly from the app, why do they need to be connected to a server?

    • @[email protected]
      link
      fedilink
      English
      304 months ago

      If every app on your phone was constantly running and asking the server for new messages, it would drain a lot of battery. That’s why phones instead use a single app that asks a notification server if any new notifications are there. The way it works is if you e.g. get a WhatsApp message, the WhatsApp server tells the notification server that you have a new message, then when the notification app asks that server for new messages, the server will tell it that there’s a new WhatsApp notification. Then the notification app wakes up WhatsApp and tells it there’s a new notification, then WhatsApp checks for new messages and shows you the notification.

      Most apps use Apple’s system (whatever it’s called) on iOS or Google’s Firebase on Android for that. There are also apps that let you use the open standard UnifiedPush, which let’s you use any notification app or server you want.

      • @[email protected]
        link
        fedilink
        English
        34 months ago

        How does the notification daemon in Linux work? It’s all local and has been around for ages, why can’t we do that?

        • @[email protected]
          link
          fedilink
          English
          84 months ago

          The applications just run in the background the whole time. KDE was working on implementing UnifiedPush in Plasma but I don’t know if it’s already implemented or still in the works.

      • @[email protected]
        link
        fedilink
        English
        34 months ago

        I don’t have Google services and no apps with Google Firebase notifications. I don’t see any battery draining issues.

        • Miss Brainfarts
          link
          fedilink
          English
          15
          edit-2
          4 months ago

          Depends on a lot of factors, maybe you’re regaining that battery life elsewhere. But it is fact that several apps all doing their own thing will drain more battery than if they all relied on a single service like Firebase or UnifiedPush to wake them up

          • @[email protected]
            link
            fedilink
            English
            -34 months ago

            I haven’t found a study that gives exact numbers. Maybe the difference in battery consumption will be 0.5%)

    • @[email protected]
      link
      fedilink
      English
      164 months ago

      Push notifications all go through Google/Apple systems. The apps backend systems sent the notifications to them, who push them to your phone.

        • @[email protected]
          link
          fedilink
          English
          174 months ago

          Not all notifications go through FCM but all push notifications do as far as I’m aware - which is what the previous comment and the post title are talking about.

          It is, in fact, worrying for privacy implications on the one hand and a real monopolizing factor on the other since if you wish to deliver an app which needs to implement such notifications you’re using Google’s service or constantly drain the user’s battery.

          There’s UnifiedPush which tries to provide an open alternative but so far unfortunately still sees very little adoption.

          • @[email protected]
            link
            fedilink
            English
            64 months ago

            Yeah, that’s fair. Push notifications by definition come via the internet. Push and local notifications are indistinguishable to the user