Skip to content

Instantly share code, notes, and snippets.

@sneak
Created March 4, 2020 23:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sneak/e2d7fb6879ec901f9aaa5745701ccfeb to your computer and use it in GitHub Desktop.
Save sneak/e2d7fb6879ec901f9aaa5745701ccfeb to your computer and use it in GitHub Desktop.
fingerprint format for weechat from tls ircd
torsocks ./openssl s_client -connect whatever.onion:6697 | tee /tmp/out
# ... wait a sec, then ^C
cat /tmp/out | openssl x509 -sha512 -fingerprint -noout | tr -d ':' | tr 'A-Z' 'a-z' | cut -d = -f 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment