Skip to content

Instantly share code, notes, and snippets.

View rolfvreijdenberger's full-sized avatar

Rolf Vreijdenberger rolfvreijdenberger

View GitHub Profile
@thesamesam
thesamesam / xz-backdoor.md
Last active April 7, 2025 09:15
xz-utils backdoor situation (CVE-2024-3094)

FAQ on the xz-utils backdoor (CVE-2024-3094)

This is a living document. Everything in this document is made in good faith of being accurate, but like I just said; we don't yet know everything about what's going on.

Update: I've disabled comments as of 2025-01-26 to avoid everyone having notifications for something a year on if someone wants to suggest a correction. Folks are free to email to suggest corrections still, of course.

Background

@rolfvreijdenberger
rolfvreijdenberger / gist:8635153
Created January 26, 2014 16:18
bitcoin brain wallet private key generator. enter the seed / brain wallet phrase and it returns the private key in hex
#!/bin/bash
# creates a private key from a 'brain wallet'
if [ -z "$1" ]; then
echo "provide the bitcoin brain wallet seed to get the private key:";
read SEED;
else
SEED=$1;
fi
echo "seed (brain wallet): $SEED";
echo -n "bitcoin private key: ";