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 July 21, 2024 05:59
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.

Background

On March 29th, 2024, a backdoor was discovered in xz-utils, a suite of software that

@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: ";