Skip to content

Instantly share code, notes, and snippets.

@hungryduck
Created October 7, 2016 18:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hungryduck/d19b540059c27314448e249e2146f898 to your computer and use it in GitHub Desktop.
Save hungryduck/d19b540059c27314448e249e2146f898 to your computer and use it in GitHub Desktop.
List active .onion bitcoin nodes (Bash)
#!/bin/bash
# Command to get a list of active bitcoin .onion addresses from bitnodes.21.co
curl -s https://bitnodes.21.co/api/v1/snapshots/latest/ | egrep -o '[a-z0-9]{16}\.onion:?[0-9]*' | sort -ru
@miguelmorales85
Copy link

Not working,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment