app
Adom USB - Vendor / bulk sniffer
Public Unreviewedby John Lauer
Universal fallback sniffer — capture raw control + bulk + interrupt transfers for ANY device (vendor-specific protocols, WebUSB, custom gadgets) to pcap.
#!/bin/bash
set -euo pipefail
DIR="$(cd "$(dirname "$0")" && pwd)"; SLUG="adom-usb-sniffer-vendor"
PDIR="${HOME}/.adom/usb-plugins/${SLUG}"; mkdir -p "$PDIR" "${HOME}/.local/bin"
install -m 0644 "$DIR/plugin.json" "$PDIR/plugin.json"; install -m 0755 "$DIR/$SLUG" "$PDIR/$SLUG"
ln -sf "$PDIR/$SLUG" "${HOME}/.local/bin/$SLUG"; echo "Installed $SLUG"