1777146658

This commit is contained in:
2026-04-25 13:50:58 -06:00
parent 292841526c
commit d9e7860432
3 changed files with 21 additions and 12 deletions
+11 -10
View File
@@ -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
# alert spammmm
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 if [ -n "$blescan" ]; then
## these options are powerful, silent, fast, aND RIsky # LE detected poweroff to cryptdisk and notify
poweroff --poweroff --force --no-wall # --no-sync # alert spammmm
done for((i=0;i<10;i++)); do
fi 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
poweroff --poweroff --force --no-wall # --no-sync
done
fi
done done
+1 -1
View File
@@ -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
+8
View File
@@ -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"