Skip to content

Instantly share code, notes, and snippets.

@alexcreek
Last active March 5, 2023 00:29
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save alexcreek/136900c74a0730bf6070 to your computer and use it in GitHub Desktop.
Save alexcreek/136900c74a0730bf6070 to your computer and use it in GitHub Desktop.
Download a list of tor exit nodes from torproject.org
#!/bin/bash
curl -s https://check.torproject.org/exit-addresses | awk '/ExitAddress/ {print $2}' | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment