Tefisc Fact Engine
Published: August 27, 2026 | 1 sources | 85% confidence

Security expert hijacks Apple's Find My network to share data with a Linux device

 Security expert hijacks Apple's Find My network to share data with a Linux device

Introduction

A security researcher has demonstrated a striking proof‑of‑concept: hijacking Apple’s Find My network to stream live location data to a Linux machine, without ever touching a Mac, iPhone, or any other Apple hardware. By fabricating a counterfeit device that mimics the communication patterns of genuine Apple products, the expert was able to infiltrate the crowdsourced network and pull location information directly into a Linux box. The experiment underscores both the ingenuity of modern vulnerability research and the lingering gaps in a system that many users trust to protect their lost devices. This article walks through what happened, the technical specifics, the broader context of Find My, why the discovery matters, and what the future may hold for Apple and its users.

What Happened

The researcher, who chose to remain anonymous, built a software‑only “ghost” device on a standard Linux workstation. By reverse‑engineering the Bluetooth Low Energy (BLE) advertising packets and the cryptographic handshake that Apple devices use to announce themselves to the Find My network, the expert crafted a series of packets that convinced nearby Apple devices to treat the Linux box as a legitimate participant. Once the spoofed device was accepted, the network began relaying encrypted location beacons back to the researcher’s machine, effectively turning the Linux box into a hidden node that could harvest live coordinates.

Crucially, the attack required no physical Apple device at any point. The researcher generated the required public‑key identifiers, signed the payloads with a self‑generated key pair, and leveraged the “offline” portion of the Find My protocol that allows devices to act as passive relays. By broadcasting the forged BLE frames, the Linux system was able to receive the same encrypted payloads that a real iPhone or AirTag would, then decrypt them using the keys it had generated. The result was a continuous stream of location data that could be logged, visualized, or forwarded to other services—all from a non‑Apple platform.

This successful hijack demonstrates that the Find My network’s reliance on anonymous, crowd‑sourced relays can be subverted when an attacker can accurately emulate the low‑level protocol. While Apple’s end‑to‑end encryption protects the content of the location reports, the mere ability to inject a rogue node and harvest those reports raises serious privacy concerns.

Key Details

The experiment hinged on a combination of open‑source tooling and custom scripts written in Python and C. The researcher first captured legitimate Find My BLE advertisements using a USB‑type Bluetooth dongle and Wireshark, then dissected the packet structure to identify the fields used for device identification, cryptographic signatures, and payload encryption. By reproducing these fields and signing them with a freshly generated elliptic‑curve key pair (using the same curve Apple employs, Curve25519), the fake device passed the network’s authenticity checks.

Find My relies on a hybrid of Bluetooth, Wi‑Fi, and cellular signals to triangulate device positions. In this proof‑of‑concept, the Linux box acted solely as a Bluetooth beacon, broadcasting the forged advertisements. Nearby Apple devices that were part of the Find My mesh automatically picked up the signal, encrypted their own location data with the public key presented by the fake device, and sent the ciphertext to Apple’s cloud servers. The researcher’s Linux node then intercepted the ciphertext, decrypted it with the corresponding private key, and extracted the latitude, longitude, and timestamp.

During testing, the researcher was able to collect location updates from multiple real devices within a 30‑meter radius, each update arriving roughly every 10‑15 seconds. The data included not only the coordinates but also ancillary metadata such as device type (iPhone, iPad, AirTag) and a rotating identifier that changes every few minutes to preserve anonymity. Although the identifiers are designed to prevent long‑term tracking, the ability to capture them in real time opens the door to correlation attacks if an adversary can amass enough snapshots.

Background

Apple’s Find My network, launched in 2019, is a global, crowdsourced location‑tracking system that leverages the billions of Apple devices already in the field. When a user marks a device as lost, that device emits encrypted BLE beacons that are picked up by any nearby Apple product. Those products act as anonymous relays, forwarding the encrypted payload to Apple’s servers, where the owner can view the device’s location on a map. The system is praised for its privacy‑by‑design approach: all payloads are end‑to‑end encrypted, Apple never sees the raw location data, and rotating identifiers are used to thwart device profiling.

Despite these safeguards, the Find My architecture was always predicated on the assumption that only authentic Apple hardware would participate in the mesh. The protocol’s open nature—necessary for interoperability across millions of devices—means that any device capable of broadcasting correctly formatted BLE packets can, in theory, join the network. Prior research has highlighted the possibility of “relay attacks” using AirTags, but this is the first publicly documented case of a fully software‑only node injecting itself into the network and extracting live location data.

Why It Matters

The ability to spoof a Find My node on a non‑Apple platform raises immediate privacy concerns. If a malicious actor can deploy a fleet of inexpensive Linux or Raspberry Pi devices in public spaces, they could silently harvest location beacons from unsuspecting users, building a map of device movements without consent. While Apple’s encryption prevents the attacker from learning the identity of the device owner, the sheer volume of location data could still be used for surveillance, stalking, or commercial profiling.

Beyond privacy, the discovery highlights a broader challenge for security‑by‑design systems that rely on open protocols. End‑to‑end encryption protects data in transit, but it does not stop an adversary from becoming a legitimate participant in the communication flow. This underscores the need for additional authentication layers—such as device attestation or hardware‑bound keys—that can verify that a node is truly an Apple‑manufactured product before it is allowed to relay or receive data.

What Happens Next

Apple is expected to respond quickly. In past incidents, the company has issued firmware updates to patch protocol weaknesses, and it maintains a robust bug‑bounty program that rewards researchers for responsibly disclosing vulnerabilities. The researcher has reportedly contacted Apple through this channel, providing detailed technical documentation and proof‑of‑concept code. If Apple validates the findings, a security update could be rolled out to iOS, macOS, and watchOS that adds stricter verification of device signatures or introduces a nonce‑based challenge to thwart replay attacks.

For the security community, this work serves as a reminder that even well‑designed privacy systems can be subverted by clever protocol manipulation. It is likely to spur further academic and industry research into hardening crowdsourced networks, not only for Find My but also for other emerging IoT location services. Users, meanwhile, should stay informed about the latest updates and consider enabling additional safeguards—such as two‑factor authentication for Find My and regular device firmware upgrades—to minimize exposure.

Conclusion

The successful hijacking of Apple’s Find My network by a Linux‑based spoof demonstrates that the system’s openness, while essential for its massive coverage, also creates an attack surface that can be exploited without any Apple hardware. By reverse‑engineering the BLE handshake and crafting authentic‑looking packets, the researcher turned a standard Linux box into a covert relay capable of pulling live location data from nearby Apple devices. This proof‑of‑concept highlights the delicate balance between privacy, usability, and security in large‑scale, crowd‑sourced services. As Apple works to patch the vulnerability and strengthen device authentication, the incident will likely influence the design of future location‑tracking ecosystems, reminding both developers and users that robust encryption must be paired with strong participant verification to truly safeguard privacy.

📖 See Also

📚 Sources & Attribution

  • ✓ TechRadar TVs