1777283427
This commit is contained in:
@@ -6,7 +6,7 @@ shut down and lock (or destory) your box if cops are detected nearby! also spam
|
|||||||
Please do not do crimes for fuck's sake, use your brain.
|
Please do not do crimes for fuck's sake, use your brain.
|
||||||
|
|
||||||
## How does it work?
|
## How does it work?
|
||||||
- Certin bits of cop kit constantly emit bluetooth low energy (BTLE) beacons
|
- Certin bits of cop kit constantly emit bluetooth low energy (BTLE) beacons like their gay little tazers and body cams
|
||||||
- Because we can look up the mac addresses used by the equipment vendor, we can filter for those vendors
|
- Because we can look up the mac addresses used by the equipment vendor, we can filter for those vendors
|
||||||
- hilariously literally none of their BTLE enabled kit ever bothered to randomize the mac addresses lmao 🥴
|
- hilariously literally none of their BTLE enabled kit ever bothered to randomize the mac addresses lmao 🥴
|
||||||
- two varieties of device have been confirmed working
|
- two varieties of device have been confirmed working
|
||||||
@@ -16,17 +16,13 @@ Please do not do crimes for fuck's sake, use your brain.
|
|||||||
## Status
|
## Status
|
||||||
in active development, multiple implementations are in the works.
|
in active development, multiple implementations are in the works.
|
||||||
|
|
||||||
## Install
|
|
||||||
**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:
|
|
||||||
```bash
|
|
||||||
bash install_DREAMMAKER.sh
|
|
||||||
```
|
|
||||||
|
|
||||||
## Props
|
## Props
|
||||||
1. BIG Thanks to [OSINTI4L](https://github.com/OSINTI4L/) for making the first verison of this!
|
1. BIG Thanks to [OSINTI4L](https://github.com/OSINTI4L/) for making the first verison of this!
|
||||||
|
|
||||||
|
## Implementations
|
||||||
|
1. [linux shell script](./implementations/BASH_Script_Linux/)
|
||||||
|
2. [python (only working on linux right now)](./implementations/Python3/)
|
||||||
|
|
||||||
## Tests
|
## Tests
|
||||||
working on both:
|
working on both:
|
||||||
- Raspberry Pi OS 6.12.75 on a Raspberry Pi 5 8GB
|
- Raspberry Pi OS 6.12.75 on a Raspberry Pi 5 8GB
|
||||||
@@ -39,10 +35,12 @@ working on both:
|
|||||||
1. ~~sniff with nrf chip~~
|
1. ~~sniff with nrf chip~~
|
||||||
4. esp32 version
|
4. esp32 version
|
||||||
- generic esp32 as possible
|
- generic esp32 as possible
|
||||||
- maybe pizzero for audio
|
- maybe pizzero for audio\
|
||||||
- maybe a phone app to get aLert on phone
|
- maybe a phone app to get aLert on phone
|
||||||
5. android implementation
|
5. android implementation
|
||||||
6. flipper zero implementation
|
6. flipper zero implementation
|
||||||
|
7. change demo sh to jusat prompt for webhook and tag if missing :snurp:
|
||||||
|
8. idfk some other means of notice ig? maybe mqtt, amazon alexa? idfk fam (the faceless woman terrifies me and one day i will finazlly smash it with a rock)
|
||||||
|
|
||||||
## Theme
|
## Theme
|
||||||
### [Paparazzi - Lady Gaga (2008)](https://music.youtube.com/watch?v=28jp-30w8Lg&si=ZmoJk750nUXNHDW8)
|
### [Paparazzi - Lady Gaga (2008)](https://music.youtube.com/watch?v=28jp-30w8Lg&si=ZmoJk750nUXNHDW8)
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# truth be told idk why tf i made this poc as a shell script. there is no non-inebreated explanaition for dis
|
||||||
set -e # faiulure is not tolerated here
|
set -e # faiulure is not tolerated here
|
||||||
## easy to add ids~
|
## easy to add ids~
|
||||||
vendor_ids=('00:25:DF' '00:58:28' '00:C0:D4' '84:70:03') # real world vendor ids
|
vendor_ids=('00:25:DF' '00:58:28' '00:C0:D4' '84:70:03') # real world vendor ids
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
# BASH IMPLEMENTATION OF [DЯΣΛMMΛKΣЯ]
|
||||||
|
**Requires a systemmd linux box with os drive encryption using cryptsetup/luks and alsop bluetoothctl and curl**
|
||||||
|
|
||||||
|
## to install the live service:
|
||||||
|
first,
|
||||||
|
then instasll/reinstall/upgrade are all the same command:
|
||||||
|
```bash
|
||||||
|
bash install_DREAMMAKER.sh
|
||||||
|
```
|
||||||
|
or juat to test the demo after putting your discord webhook url manually in `/usr/share/DREAMMAKER/.discord_url ` and tag to notify in `/usr/share/DREAMMAKER/.discord_tag`
|
||||||
|
```bash
|
||||||
|
bash DREAMMAKER-DEMO.sh
|
||||||
|
```
|
||||||
@@ -1,9 +1,12 @@
|
|||||||
# Python3 [DЯΣΛMMΛKΣЯ] Implementation
|
# Python3 [DЯΣΛMMΛKΣЯ] Implementation
|
||||||
Tested with Python 3.13.5 on Kali (Raspberry Pi 5 and Lenovo Thinpad 5xx series)
|
- Tested with Python 3.13.5 on Kali (Raspberry Pi 5 and Lenovo Thinpad 5xx series)
|
||||||
|
- not yet working on windows gdmf
|
||||||
## Install
|
## Install
|
||||||
1. create venv: `python -m venv .venv`
|
1. edit line 9 and 10 in [DREAMMAKER.py](./DREAMMAKER.py) and put in your discord webhook url and the role id to tag (\@rolename to get it, it will look something like `<@&1369280290203373670>`)
|
||||||
2. activate venv: *nix: `source .venv/bin/activate` windows powershell: `.venv\Scripts\activate`
|
2. create venv: `python -m venv .venv`
|
||||||
3. install requirements: `pip install -r requirements.txt`
|
3. activate venv: *nix: `source .venv/bin/activate` OR windows powershell: `.venv\Scripts\activate`
|
||||||
|
4. install requirements: `pip install -r requirements.txt`
|
||||||
|
5. run it! `python DREAMMAKER.py`
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
1. x get the fuckin thing working
|
1. x get the fuckin thing working
|
||||||
@@ -12,4 +15,5 @@ Tested with Python 3.13.5 on Kali (Raspberry Pi 5 and Lenovo Thinpad 5xx series)
|
|||||||
4. make service
|
4. make service
|
||||||
5. speed up?
|
5. speed up?
|
||||||
6. windowssssss
|
6. windowssssss
|
||||||
7. header rice (colors lib?)
|
7. x header rice (colors lib?)
|
||||||
|
8. serviceafy
|
||||||
Reference in New Issue
Block a user