Working to sniff Bluetooth Low Energy with the adafruit sniffer
For more information, see this blog post
Going the python route, as described here
before installing pySerial, did ...
Working to sniff Bluetooth Low Energy with the adafruit sniffer
For more information, see this blog post
Going the python route, as described here
before installing pySerial, did ...
#!/bin/bash | |
yum -y install epel-release wget | |
wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm | |
rpm -Uvh rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm | |
wget http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt | |
rpm --import RPM-GPG-KEY.dag.txt |
#!/bin/bash | |
# Centos 7/8 John the Ripper Installation | |
#release=(j 1.8.0) | |
release=(k 1.9.0) | |
# Check Centos version | |
if [ -f /etc/redhat-release ] ; then | |
source /etc/os-release | |
if [ $VERSION_ID == "8" ] ; then | |
packager=dnf | |
elif [ $VERSION_ID == "7" ] ; then |