June 24th to June 30th, 2024 – Parsing RemoteID Output and Exploring NeumoDVB

This week in DragonOS…

Highlight of the Week: RemoteID JSON Decoding…

Exploring DVB with NeumoDVB…

Explore More with DragonOS…


Highlight of the Week: RemoteID JSON Decoding

RemoteID continues to be a hot topic. Following DragonOS initial support for RemoteID, extending the range at which RemoteID packets were detected, and the addition of the DragonTooth to the WarDragon, this week it is now possible to parse the JSON output of RemoteID packets.

Previously, the setup for RemoteID involved Sniffle decoding the BlueTooth packets, followed by a Wireshark dissector that would enable users to breakdown the contents of the packet in Wireshark. Cemaxecuter tweaked this process to instead go from Sniffle decoded BlueTooth directly to Tshark which prints JSON data in real time to stdout. The key advantage to this approach that the JSON data can be leveraged in a custom application to parse information that you care about. Watch Cemaxecuter walk through the steps you need to take in order to replicate this flow – you don’t even need to have a RemoteID transmitter because there is a packet you can test on in the wireshark dissector repo.

You can use the script below to test this on your WarDragon, DragonTooth, or custom instance of DragonOS. If you just want to test with a pre-captured packet, you can omit the second and third lines – just make sure to specify the correct path to your packet capture in the first line.

$ pcap_path='/tmp/pcap_fifo'  #replace with anything, including a precaptured pcap
$ mkfifo $pcap_path  #for live capture
$ ./sniff_receiver.py -l -e -o $pcap_path  #for live capture, from Sniffle/python_cli
$ tshark -r $pcap_path -X lua_script:opendroneid-dissector.lua -T json  #from wireshark-dissector repo

Do you have an interesting idea for what you might be able to do with this JSON data? Let us know! It seems the FAA is using this information to enforce drone flight restrictions in sensitive areas. It is hard to determine the authenticity of this letter, but nonetheless, it is not a good idea to violate FAA flight restrictions: https://www.reddit.com/r/drones/comments/1dnkaof/the_faa_sent_me_a_letter_today/. If you are a drone pilot and want to ensure that you are operating within the FAA’s guidelines, you can use the FAA’s B4UFLY service or any of the other supported flight restriction notification services, such as UASSidekick. With the Fourth of July holiday just days away, make sure you are practicing good drone safety!


Exploring DVB with NeumoDVB

Last week, the blog covered the various updates to DragonOS but also briefly mentioned the addition of one new tool: NeumoDVB. According to Artemis, Digital Video Broadcasting Terrestrial (DVB-T), is “a digital broadcast television format used in Europe and in many other countries in the world.” In addition to DVB-T, there is also DVB-C (cable), DVB-H (handheld/mobile), DVB-T2 (terrestrial version 2), DVB-S (satellite), and DVB-S2 (satellite version 2).

NeumoDVB interfaces with DVB tuners that are based on ST Microelectronics STID135-WB (discontinued) or STV091X, Texas Instruments’ TAS2110, or Silicon Labs’ SI2183. According to the NeumoDVB GitHub, some compatible cards are as follows:

Rob VK8FOES on YouTube managed to have a tuner that was compatible with NeumoDVB and was able to verify that the process works on DragonOS. Here is a screenshot from Rob’s system.

You can read the following instructions for how to install on DragonOS. The instructions were verified to work on the WarDragon as well: https://github.com/alphafox02/neumodvb/blob/master/docs/INSTALL.md.

As a bit of interesting history, the RTL-SDR is based on the RTL2382U chip which was originally a DVB-T tuner. You can read more about its history here: https://www.rtl-sdr.com/about-rtl-sdr/. Unfortunately, tuners from common SDRs such as the RTL-SDR (Rafael Micro’s RTL2382U), AirSpy (Rafael Micro’s R820T2), SDRPlay (Mirics’ MSI2500) are not directly compatible with NeumoDVB. Where SDRs aim to deliver a variety of software applications, DVB included, the tuners compatible with NeumoDVB listed above are built for DVB applications only. You might want a standalone tuner if you are very dedicated to DVB applications and want the service support that a company like TBS could provide in the case of misconfigurations. If you are interested in exploring DVB with a SDR, this is possible through software installed on DragonOS like SDRAngel, LeanSDR, GNU Radio Core Blocks, or SatDump and on other 3rd party software such as gr-dvbs2rx, gr-dvbgse, or dvb-gse.


Explore More with DragonOS…

Leave a Reply

Your email address will not be published. Required fields are marked *

Leave a Reply

Your email address will not be published. Required fields are marked *