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 | |
# 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 |
#!/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 | |
# dependencies : curl, python, jq | |
DEVICE_ID=put_your_device_id | |
TOKEN=put_your_device_token | |
# ! mettre les headers HTTP en variable | |
# Fonctions all,id,signal,value,pub,sub |
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 git || apt-get install git | |
yum -y groupinstall 'Development Tools' || apt-get install build-essential git | |
cd /tmp | |
git clone git://kernel.ubuntu.com/cking/stress-ng.git | |
cd stress-ng | |
make | |
cp stress-ng /usr/bin | |
rm -rf /tmp/stress-* |
#!/bin/sh | |
##1. Dans le GUI : | |
##Modules Administration/Download and install Languages/Apply Config | |
##Asterisk SIP Settings/Advanced General Settings/Language = fr/Apply config | |
##2. En console : | |
##amportal restart | |
##3. Téléchargement des fichiers | |
REP=http://downloads.asterisk.org/pub/telephony/sounds | |
DIR=/var/lib/asterisk/sounds/fr | |
mkdir $DIR |
* LFCS Domains 2015.02 | |
Note - the domains will change somewhat in March 2015. SW RAID | |
with mdadm will be removed | |
** The Command Line | |
*** Editing text files on the CLI | |
Covers the use of the basic text editors nano and gedit as well | |
as the advanced editors _vi_ and _emacs_ | |
- nano | |
simple CLI-based text editor |
#!/bin/bash | |
# Works with Kali latest releases | |
if [ "$(id -u)" != "0" ]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi | |
cat << EOF > /etc/default/grub | |
# grub-mkconfig -o /boot/grub/grub.cfg | |
GRUB_DEFAULT=0 | |
GRUB_TIMEOUT=5 |
USER=SNMPAdmin | |
PASSWORD=SNMPpassword | |
SECRET=SNMPSecret | |
HOST=127.0.0.1 | |
snmpwalk -v3 -l authPriv -u $USER -a MD5 -A $PASSWORD -x DES -X $SECRET $HOST |
#!/bin/bash | |
if [ "$(id -u)" != "0" ]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi | |
cat << EOF > /etc/default/grub | |
# grub-mkconfig -o /boot/grub/grub.cfg | |
GRUB_TIMEOUT=5 | |
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" | |
GRUB_DEFAULT=saved |