first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:29:38 +03:00
commit 427856cd3a
176 changed files with 27613 additions and 0 deletions

12
utils/pcap-extract-zigbee.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
BASEDIR="$(realpath -- $(dirname $0))"
if [ $# -lt 1 ]; then
echo "usage: $0 <input.pcap>"
exit 1
fi
for name in "$@"; do
tshark -r "${name}" -lq -T ek -x | "${BASEDIR}"/filter-zigbee.jq
done