os/Linux
curl -kvLS https://google.co.kr 에러
C/H
2017. 2. 20. 08:30
ssl.verifyhost ignoring
curl -kvL https://google.co.kr * About to connect() to google.co.kr port 443 (#0) * Trying 172.217.25.67... connected * Connected to google.co.kr (172.217.25.67) port 443 (#0) * Initializing NSS with certpath: sql:/etc/pki/nssdb * warning: ignoring value of ssl.verifyhost * skipping SSL peer certificate verification # ciphers 테스트 curl -kvLS https://google.co.kr curl -kvLS --ciphers rsa_aes_256_sha https://google.co.kr # 문제가 없다면, 아래 명령어로 결과물을 받을 수 있다. curl --ciphers rsa_aes_256_sha https://google.co.kr
반응형