Skip to content

Instantly share code, notes, and snippets.

@brkr19
brkr19 / iot_ctf_aliases.sh
Last active April 3, 2026 03:17
IoT CTF Aliases
hex2ascii() {
    tr -d "'" | xxd -r -p; printf "\n"
}
gattval() {
cut -d":" -f2 | tr -d "'" | xxd -r -p; printf "\n"
}
gatt_read() {
if [ $# -lt 1 ]; then
@brkr19
brkr19 / iot-playground-tips.md
Last active June 4, 2026 20:18
IoT Playground Tips

Tool Setup

Bluetooth Service

# IMPORTANT:  if you get connection refused (111)
# Check the bluetooth service
sudo systemctl status bluetooth

# Start bluetooth if it was not active
sudo systemctl restart bluetooth