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
/* | |
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 |
#!/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" \ |