Skip to content

Instantly share code, notes, and snippets.

View thecyberd3m0n's full-sized avatar
🎯
Focusing

Dima thecyberd3m0n

🎯
Focusing
View GitHub Profile
@thecyberd3m0n
thecyberd3m0n / Docker commands
Created July 28, 2018 17:30
Docker commands I want to remember
# build from Dockerfile
`docker build -t <machine_name> .`
# run built machine
`docker run -it <machine_name>`
-d - in background
-P - expose all ports to host
# list all machines
BEGIN:VCARD
VERSION:3.0
UID:4a8a692f-f87b-4990-b8d3-3362f1e9665f
N:zignoruj.pl0
FN:zignoruj.pl0
TEL:+48857223129
END:VCARD
BEGIN:VCARD
VERSION:3.0
UID:bca4f522-9a8f-4be1-8068-98db8f3e8628
adb shell "while true; do screenrecord --output-format=h264 -; done" | ffplay -framerate 60 -probesize 32 -sync video -
@thecyberd3m0n
thecyberd3m0n / PHPClassessAccount.txt
Last active February 24, 2020 21:52
PHPClasses Burner Accounts
alamid
email: kaxica2710@xhyemail.com
account password: veryunsafepassword
repo password:064f734e7ae15812cd2d902c1523105c
https://rentry.co/opredscare
+-------------------------------------------------------------------------------------+
OBJECTIVE - To disable Russian and Belarusian infrastructure (banking, transportation, military, energy)
DO NOT TARGET HOSPITALS, EDUCATION, OR SOCIAL SERVICES
TARGETS :
Russia
- https://anonfiles.com/hcPfm8K5xe/gov.ru_domains_csv
- https://anonfiles.com/j4Pdm9K2x5/mil.ru_domains_csv
@thecyberd3m0n
thecyberd3m0n / ibeacon_scan.sh
Created June 29, 2022 23:10
Bash: detect iBeacons
#!/bin/bash
# iBeacon Scan by Radius Networks, modified by Dmitrij Rysanow (https://gitlab.com/thecyberd3m0n)
# will detect all iBeacon devices around and measure respective RSSI.
# Requires Bluetooth. If not works, run sudo hciconfig hci0 down; sudo hciconfig hci0 up;
# https://stackoverflow.com/questions/21733228/can-raspberrypi-with-ble-dongle-detect-ibeacons/21790504#21790504
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi