1777146658
This commit is contained in:
+12
-11
@@ -23,15 +23,16 @@ send_discord_webhook() {
|
|||||||
while true; do #infinite loop
|
while true; do #infinite loop
|
||||||
# scan for those vendor ids
|
# scan for those vendor ids
|
||||||
blescan=$(eval "bluetoothctl -t 10 scan on | awk '{print \$3}' | grep ${vendor_ids[@]/#/-e }")
|
blescan=$(eval "bluetoothctl -t 10 scan on | awk '{print \$3}' | grep ${vendor_ids[@]/#/-e }")
|
||||||
if [ -n "$blescan" ]; then
|
|
||||||
# LE detected poweroff to cryptdisk and notify
|
if [ -n "$blescan" ]; then
|
||||||
# alert spammmm
|
# LE detected poweroff to cryptdisk and notify
|
||||||
for((i=0;i<10;i++)); do
|
# alert spammmm
|
||||||
send_discord_webhook "FUZZ!!!" & # fork task to background to run more faster
|
for((i=0;i<10;i++)); do
|
||||||
|
send_discord_webhook "FUZZ!!!" & # fork task to background to run more faster
|
||||||
# cryptsetup erase <device> # ion case you wanna nuke ur shit lmao
|
|
||||||
## these options are powerful, silent, fast, aND RIsky
|
# cryptsetup erase <device> # ion case you wanna nuke ur shit lmao
|
||||||
poweroff --poweroff --force --no-wall # --no-sync
|
## these options are powerful, silent, fast, aND RIsky
|
||||||
done
|
poweroff --poweroff --force --no-wall # --no-sync
|
||||||
fi
|
done
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
@@ -11,7 +11,7 @@ shut down and lock (or destory) your box if cops are detected nearby! also spam
|
|||||||
- Body Cameras, from 2? brands?
|
- Body Cameras, from 2? brands?
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
**Requires a linux box with os drive encryption using cryptsetup/luks and alsop bluetoothctl**
|
**Requires a systemmd linux box with os drive encryption using cryptsetup/luks and alsop bluetoothctl and curl**
|
||||||
|
|
||||||
then instasll/reinstall/upgrade are all the same command:
|
then instasll/reinstall/upgrade are all the same command:
|
||||||
```bash
|
```bash
|
||||||
|
|||||||
@@ -41,6 +41,14 @@ if [ ! -f "$tag_file" ]; then
|
|||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ ! $(which bluetoothctl) ]; then
|
||||||
|
echo -e "\nERROR: bluetoothctl not found! Please install and try again.\n"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! $(which CURL) ]; then
|
||||||
|
echo -e "\nERROR: curl not found! Please install and try again.\n"
|
||||||
|
fi
|
||||||
|
|
||||||
# install itt
|
# install itt
|
||||||
echo "installing service"
|
echo "installing service"
|
||||||
sudo cp DREAMMAKER.sh "$script_file"
|
sudo cp DREAMMAKER.sh "$script_file"
|
||||||
|
|||||||
Reference in New Issue
Block a user