Dig into wireless signals to discover their physical locations. WaveDigger helps you find Wi-Fi access points by their BSSID (MAC address) and LTE cell towers by their network parameters. Built with Next.js, TypeScript, and deck.gl for interactive map visualization.
A hosted version can be found at https://wavedigger.networksurvey.app.
- BSSID Search: Enter a BSSID to find its approximate location
- Input Validation: Automatic formatting and validation of BSSID input
- Supports formats:
AA:BB:CC:DD:EE:FF,AA-BB-CC-DD-EE-FF,AABBCCDDEEFF
- Supports formats:
- Interactive Map: Visualize results on a deck.gl-powered map
- Search History: Track recent searches for quick access
- Responsive Design: Works on desktop and mobile devices
🙏 This project would not be possible without the incredible work done by the apple-corelocation-experiments team.
WaveDigger is built upon their research and reverse engineering of Apple's location services API. Specifically, we use:
- Their protobuf definitions for Apple's WLOC API
- Documentation of the API endpoints and request/response formats
- Understanding of coordinate encoding and API behavior
- The initial bytes prefix required for valid requests
Their work in understanding and documenting Apple's undocumented location services has made it possible for projects like WaveDigger to exist. Please check out their repository for the original research and additional tools for working with Apple's location services.
- Node.js 18+ and npm
- Install dependencies:
npm install- (Optional) Add a Mapbox token for enhanced map tiles:
- Get a token from Mapbox
- Add it to
.env.local:
NEXT_PUBLIC_MAPBOX_TOKEN=your_token_here
npm run devOpen http://localhost:3000 to view the application.
- Frontend: Next.js 15 with TypeScript
- Map Visualization: deck.gl with react-map-gl
- Styling: Tailwind CSS
- API: Next.js API routes
The application uses Apple's real WLOC API to query BSSID locations. This implementation is based on the research and protobuf definitions from the apple-corelocation-experiments project.
The API implementation:
- Uses protobuf for communication with Apple's servers
- Sends requests to
https://gs-loc.apple.com/clls/wloc - Handles coordinate conversion (Apple uses int64 with 8 decimal places)
- Supports both default and China region endpoints
To test the app:
- Find a real Wi-Fi BSSID (MAC address) from your router or access point
- Enter it in any supported format
- The app will query Apple's database and show the location if found
Note: Not all BSSIDs are in Apple's database. Newly deployed or private access points may not have location data.
- Cell Tower Tracking: Find cell tower locations
- Export Results: Download search results as JSON/CSV
