ssl
SSL Endpoint | Heroku Dev Center
12 hours ago by etucker
Steps to add an SSL endpoint on Heroku
heroku
ssl
https
12 hours ago by etucker
How Does Secure Socket Layer (SSL or TLS) Work? | LuxSci FYI
13 hours ago by gdw
The Secure Socket Layer, SSL for short, is a protocol by which many services that communicate over the Internet can do so in a secure fashion.
security
www
ssl
tls
wpd
itp
13 hours ago by gdw
grwl/sslcaudit
4 days ago by adulau
"The goal of sslcaudit project is to develop a utility to automate testing SSL/TLS clients for resistance against MITM attacks. It might be useful for testing a thick client, a mobile application, an appliance, pretty much anything communicating over SSL/TLS over TCP."
ssl
ssl/tls
security
security_analysis
security_assessment
mitm
sslcaudit
tcp
infosec
4 days ago by adulau
Adding self-signed https certificates to java keystore | Chris Searle
5 days ago by jenkner
#!/bin/sh
#
# usage: retrieve-cert.sh remote.host.name [port]
#
REMHOST=$1
REMPORT=${2:-443}
echo |
openssl s_client -connect ${REMHOST}:${REMPORT} 2>&1 |
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p'
java
ssl
keystore
development
https
#
# usage: retrieve-cert.sh remote.host.name [port]
#
REMHOST=$1
REMPORT=${2:-443}
echo |
openssl s_client -connect ${REMHOST}:${REMPORT} 2>&1 |
sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p'
5 days ago by jenkner