목록TLS (4)
준호씨의 블로그
sslscan? Command line util for Gathering TLS (previously SSL) information from specific host using openssl. Protocol and ciphers, vulnerability and so on. Installation brew install sslscan starttls SMTP Test $ sslscan --starttls-smtp mx1.hanmail.net:25 ..
Sometimes you will need TLS support when building sendmail and use it. Add the following lines to the m4 file. APPENDDEF(`conf_sendmail_ENVDEF', `-DSTARTTLS') APPENDDEF(`conf_sendmail_LIBS', `-lssl -lcrypto') If you want to build with a specific version..
얼마전 TLS 관련 작업을 하면서 RFC2246 을 읽다가 번역 해 보려고 gist 를 만들어 보았다. 언젠간 번역 할 수 있겠지... 그나저나 gist 에디터가 사이즈 조절이 안되어서 너무 불편... 그냥 github 에 올리면서 작업할까 싶기도 함. <script src="https://gist.github.com/junho85/ed5f119e0e27ae3729fb.js"></script>
요지는 mail.smtp.ssl.protocols 에 "SSLv2Hello SSLv3" 를 지정하는 것이다. 아래 처럼 property 에 추가 하면 된다. props.put("mail.smtp.ssl.protocols", "SSLv2Hello SSLv3"); 만약 SSLv2Hello 를 하지 않고 처음부터 SSLv3 를 사용하려면 SSLv3 만 넣으면 된다. 실행 할 때 VM options 에 아래 내용을 추가 하면 Handshake..