One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| #!/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) <[email protected]> | |
| openssl s_client -connect tuner.pandora.com:443 < /dev/null 2> /dev/null | \ | |
| openssl x509 -noout -fingerprint | tr -d ':' | cut -d'=' -f2 |