Skip to content

Instantly share code, notes, and snippets.

View jamesleytevidal's full-sized avatar

jamesleytevidal

View GitHub Profile
@jamesleytevidal
jamesleytevidal / gist:d6547804de47605a0f8ea42b077fe3ed
Last active June 28, 2018 18:14 — forked from bigsnarfdude/gist:7405ba7d2c5cc88cfdfc
Install instructions for Bro IDS on a Raspberry Pi - tested on Model 3B - bro package versions updated
# echo 'deb-src http://download.opensuse.org/repositories/network:/bro/Debian_8.0/ /' \
>> /etc/apt/sources.list.d/bro.list
# wget http://download.opensuse.org/repositories/network:bro/Debian_8.0/Release.key \
-O - | apt-key add -
# apt-get update
# apt-get build-dep bro
# apt-get install bison cmake cmake-data libarchive13 libbison-dev libpcap-dev libpython-dev libpython2.7-dev libssl-dev python-dev python2.7-dev swig swig2.0
# apt-get source --compile bro
# dpkg -i bro_2.5.2-0_armhf.deb bro-core_2.5.2-0_armhf.deb broctl_2.5.2-0_armhf.deb libbroccoli_2.5.2-0_armhf.deb
# /opt/bro/bin/broctl
@jamesleytevidal
jamesleytevidal / btcrssi.sh
Created September 13, 2022 14:59
RSSI for BT Classic via shell script
while :
do
sudo btmgmt find | awk '/EDR/ {print}'
done