Skip to content

Instantly share code, notes, and snippets.

View djnnvx's full-sized avatar
🇺🇦
слава Україні

bogdan djnnvx

🇺🇦
слава Україні
View GitHub Profile
@djnnvx
djnnvx / lila.ino
Last active February 3, 2024 13:41
esp8266-packet-monitor-over-mqtt
/*
lila ~ http://djnn.sh
esp8266 packet-sniffer. relays packets count over mqtt & informs you in case of
deauth attack.
PLEASE NOTE:
since it uses the same WiFi stack to run analysis & communicate, this really fucking
sucks. ive attempted to do this just to do something funny. please dont actually use
@djnnvx
djnnvx / dump-database-to-csv.sh
Created March 8, 2023 11:33
bash script dumping Postgresql database to separate `.csv` files (one per table) and bundling them together in a `tar` archive
#!/usr/bin/env bash
set -euo pipefail
POSTGRES_DB=postgres
POSTGRES_USER=postgres
CONTAINER_NAME=postgres_db_1
docker exec "${CONTAINER_NAME}" psql -U "$POSTGRES_USER" \
@djnnvx
djnnvx / WORKSHOP.md
Last active March 8, 2023 11:35
Beginner workshoop: Create your own keylogger

PyLogger

In this Workshop you 'll learn :

✔️ How to spy on all the keystrokes of a computer

✔️ How to send it to a remote server

✔️ How to transform a .py in a binary with Pyinstaller

✔️ How to obfuscate such a binary