Skip to content

Instantly share code, notes, and snippets.

@originalsouth
Created August 6, 2017 16:56
Show Gist options
  • Save originalsouth/110717d8a101d9ffc7f71f2d329ee15a to your computer and use it in GitHub Desktop.
Save originalsouth/110717d8a101d9ffc7f71f2d329ee15a to your computer and use it in GitHub Desktop.
Flood the main bar screen at SHA2017 with a monochrome image
#!/usr/bin/env zsh
DATA=$(for point in $(convert $1 txt: | grep black | cut -d":" -f 1 );do echo "PX $point 000000" | sed 's/,/ /'; done)
yes $DATA | pv | netcat barflood.sha2017.org 2342
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment