Skip to content

Instantly share code, notes, and snippets.

@ahungry
Forked from r35krag0th/Get-TLS-Fingerprint.sh
Created June 7, 2016 16:51
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 ahungry/ab4161c093fe1f8b6d500a63535e5d0f to your computer and use it in GitHub Desktop.
Save ahungry/ab4161c093fe1f8b6d500a63535e5d0f to your computer and use it in GitHub Desktop.
Get Pandora TLS Fingerprint
#!/bin/bash
##
## A simple little shell script that will return the current
## fingerprint on the SSL certificate. It's crude but works :D
##
## Author: Bob Saska (r35krag0th) <git@r35.net>
openssl s_client -connect tuner.pandora.com:443 < /dev/null 2> /dev/null | \
openssl x509 -noout -fingerprint | tr -d ':' | cut -d'=' -f2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment