Skip to main content

PCAP Samples

Example captures for training.

Note

PCAP files may contain sensitive data. For this project, no actual PCAP files are published - create your own during analysis!

During your own analysis, create these captures:

CaptureContentUse
advertising_scan.pcapngAdvertising packetsPhase 1
connection_setup.pcapngConnection setupProtocol analysis
gatt_discovery.pcapngService discoveryGATT mapping
app_commands.pcapngApp commands to deviceCommand RE

Creating Captures​

# With tshark (CLI)
tshark -i nRF_Sniffer -w my_capture.pcapng

# With Wireshark (GUI)
# 1. Select "nRF Sniffer for Bluetooth LE" interface
# 2. Click Start
# 3. Perform actions
# 4. Stop and save

Analysis Tips​

Filtering​

# ATT protocol only
btatt

# Writes only
btatt.opcode == 0x12

# Specific device
btle.advertising_address == aa:bb:cc:dd:ee:ff

Own Captures

The best PCAP files are the ones you create yourself! They contain exactly the data of your target device.