Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
sslyze — 빠르고 강력한 SSL/TLS 스캐닝 라이브러리. | Kitploit
도구/GitHubGitHub/nabla-c0d3/sslyze
Vulnerability ScannersConfiguration AuditingNetwork SecurityDevSecOps
GitHubnabla-c0d3/sslyze

sslyze

빠르고 강력한 SSL/TLS 스캐닝 라이브러리.

저장소 보기
3.8k4914개월 전Kitploit 검토 완료

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

SSLyze

Run Tests Downloads PyPI version Python version

SSLyze는 빠르고 강력한 SSL/TLS 스캐닝 도구이자 Python 라이브러리입니다.

SSLyze는 서버에 연결하여 SSL/TLS 구성을 분석함으로써 강력한 암호화 설정(인증서, 암호 제품군, 타원 곡선 등)을 사용하고 알려진 TLS 공격(Heartbleed, ROBOT, OpenSSL CCS 인젝션 등)에 취약하지 않은지 확인할 수 있습니다.

주요 기능

  • 속도와 신뢰성에 초점: SSLyze는 매일 수십만 대의 서버를 안정적으로 스캔하는 데 사용되는 검증된 도구입니다.
  • 운영화 용이: SSLyze는 CI/CD에서 직접 실행하여 Mozilla의 권장 TLS 구성과 서버를 지속적으로 비교할 수 있습니다.
  • 완전히 문서화된 Python API를 통해 AWS Lambda에 배포된 함수와 같은 모든 Python 애플리케이션에서 직접 스캔을 실행할 수 있습니다.
  • SMTP, XMPP, LDAP, POP, IMAP, RDP, Postgres 및 FTP 서버를 포함한 비HTTP 서버 스캔 지원.
  • 스캔 결과는 JSON 파일로 쉽게 저장하여 나중에 처리할 수 있습니다.
  • 그 외에도 다양한 기능!

빠른 시작

Windows, Linux(x86 또는 x64) 및 macOS에서는 pip를 통해 SSLyze를 직접 설치할 수 있습니다.

root@kitploit:~
$ pip install --upgrade pip setuptools wheel
$ pip install --upgrade sslyze
$ python -m sslyze www.yahoo.com www.google.com "[2607:f8b0:400a:807::2004]:443"

Docker를 통해서도 사용할 수 있습니다.

root@kitploit:~
$ docker run --rm -it nablac0d3/sslyze:6.1.0 www.google.com

마지막으로, 미리 컴파일된 Windows 실행 파일은 Release 페이지에서 다운로드할 수 있습니다.

Python API 문서

SSLyze의 Python API 사용 방법을 설명하는 샘플 스크립트는 ./api_sample.py에서 확인할 수 있습니다.

SSLyze Python API에 대한 전체 문서는 여기에서 확인할 수 있습니다.

CI/CD 단계로 사용하기

기본적으로 SSLyze는 서버의 스캔 결과를 Mozilla의 권장 "중간" TLS 구성과 비교하여 서버가 준수되지 않은 경우 0이 아닌 종료 코드를 반환합니다.

root@kitploit:~
$ python -m sslyze mozilla.com
root@kitploit:~
Checking results against Mozilla's "intermediate" configuration. See https://ssl-config.mozilla.org/ for more details.

mozilla.com:443: OK - Compliant.

비교할 Mozilla 구성은 --mozilla_config={old, intermediate, modern}을 통해 설정할 수 있습니다.

root@kitploit:~
$ python -m sslyze --mozilla_config=modern mozilla.com
root@kitploit:~
Checking results against Mozilla's "modern" configuration. See https://ssl-config.mozilla.org/ for more details.

mozilla.com:443: FAILED - Not compliant.
    * certificate_types: Deployed certificate types are {'rsa'}, should have at least one of {'ecdsa'}.
    * certificate_signatures: Deployed certificate signatures are {'sha256WithRSAEncryption'}, should have at least one of {'ecdsa-with-SHA512', 'ecdsa-with-SHA256', 'ecdsa-with-SHA384'}.
    * tls_versions: TLS versions {'TLSv1.2'} are supported, but should be rejected.
    * ciphers: Cipher suites {'TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384', 'TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256', 'TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256'} are supported, but should be rejected.

또는 Mozilla의 TLS 구성 형식을 따르는 JSON 파일을 제공하여 사용자 지정 TLS 구성과 비교할 수 있습니다.

root@kitploit:~
$ python -m sslyze --custom_tls_config custom_tls_config_example.json mozilla.com
root@kitploit:~
Checking results against custom TLS configuration.

mozilla.com:443: OK - Compliant.

사용자 지정 TLS 구성의 예는 custom_tls_config_example.json을 참조하세요.

이 기능을 사용하면 TLS 준수를 보장하기 위해 CI/CD 단계로 SSLyze 스캔을 쉽게 실행할 수 있습니다.

개발 환경

개발 환경을 설정하려면:

root@kitploit:~
$ pip install --upgrade pip setuptools wheel
$ pip install -e . 
$ pip install -r requirements-dev.txt

그런 다음 다음 명령으로 테스트를 실행할 수 있습니다.

root@kitploit:~
$ invoke test

라이선스

저작권 (c) 2026 Alban Diquet

SSLyze는 GNU Affero General Public License (AGPL) 조건에 따라 제공됩니다. 자세한 내용과 예외는 LICENSE.txt를 참조하세요.

도구 다운로드