Install the following dependencies
brew install pipenv
brew install ffmpeg
pipenv install --python 3.10
| # The check_url recursive function | |
| check_url() { | |
| this_url="${1}" | |
| curl_format=$(echo " | |
| http_code| %{http_code} | |
| http_version| %{http_version} | |
| \n") | |
| # ( | |
| # cat << EOF | |
| # curl -w "${curl_format}" -o /dev/null -D - -sk "${this_url}" |
| # Verify SSL | |
| ssl_domain=mydomainnametotest.com | |
| openssl rsa -noout -modulus -in $ssl_domain.key | openssl sha256 | |
| openssl req -noout -modulus -in $ssl_domain.csr | openssl sha256 | |
| openssl x509 -noout -modulus -in $ssl_domain.crt | openssl sha256 | |
| # Output text of certificate | |
| openssl x509 -text -in /etc/nginx/ssl/$ssl_domain.crt | |
| # Get details of all certs in .crt bundle file to verify certificate chain |
You can search a GitHub user's Gists by adding user:username to the search bar and then any contents you want to search that uers's gist to find.
Example: You want to search a through some gists by a user trying to find something about HTTP ping https://gist.github.com/search?q=user%3Amttjohnson+http+ping&ref=searchresults