[openssl] openssl client로 인증서 만료일 확인하기
2020. 2. 28. 17:20
로컬에 존재하는 인증서 만료일 확인
openssl x509 -in {certification location} -noout -dates
remote server의 인증서 만료일 확인
openssl s_client -connect {remote ip}:443 | openssl x509 -noout -dates
'프로그래밍 > bash' 카테고리의 다른 글
[awk] 아주 간단한 awk 사용법 (0) | 2020.03.06 |
---|---|
[Bash] shell 스크립트 기본 (0) | 2020.02.28 |