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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
censys-enumeration — 주어진 도메인에 대해 Censys의 SSL/TLS 인증서 데이터세트를 사용하여 서브도메인/이메일을 추출하는 스크립트 | Kitploit
도구/GitHubGitHub/0xbharath/censys-enumeration
OSINT (Open Source Intelligence)ReconnaissanceInformation GatheringSubdomain EnumerationEmail Harvesting
GitHub0xbharath/censys-enumeration

censys-enumeration

주어진 도메인에 대해 Censys의 SSL/TLS 인증서 데이터세트를 사용하여 서브도메인/이메일을 추출하는 스크립트

저장소 보기
1563253년 전Kitploit 검토 완료

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

Censys 열거

  • Censys의 SSL/TLS 인증서 데이터셋을 사용하여 주어진 도메인에 대한 서브도메인/이메일을 추출하는 스크립트
  • 출력은 JSON 형식입니다

데모

script-in-action

스크린샷

비상세 모드

non-verbose

상세 모드

verbose

샘플 JSON 출력

non-verbose

서드파티 패키지 의존성

censys

click

설정

  • 이 저장소를 클론하세요
root@kitploit:~
$ git clone [email protected]:yamakira/censys-enumeration.git
  • 의존성을 설치하세요
root@kitploit:~
$ pip install -r requirements.txt
  • https://censys.io에서 계정을 만들어 Censys API ID와 Censys API secret을 받으세요

  • Censys API ID와 Censys API secret을 각각 OS 환경 변수 CENSYS_API_ID 및 CENSYS_API_SECRET로 추가하세요. Linux에서는 다음 명령과 유사한 명령을 사용하여 이 작업을 수행할 수 있습니다

root@kitploit:~
$ export CENSYS_API_SECRET="iySd1n0l2JLnHTMisbFHzxClFuE0"
  • 도움말 메뉴를 확인하세요
root@kitploit:~
$ python censys_enumeration.py --help                                                                                                 
Usage: censys_enumeration.py [OPTIONS] FILE

Options:
  --verbose                       Verbose output
  --subdomains / --no-subdomains  Enable/Disable subdomain enumeration
  --emails / --no-emails          Enable/Disable email enumeration
  --help                          Show this message and exit.

사용법

  • 서브도메인 및 이메일 열거
root@kitploit:~
$ python censys_enumeration.py domains.txt
  • 서브도메인 열거만
root@kitploit:~
$ python censys_enumeration.py --no-emails domains.txt 
  • 이메일 열거만
root@kitploit:~
$ python censys_enumeration.py --no-sudomains domains.txt 
  • 상세 출력
root@kitploit:~
$ python censys_enumeration.py --verbose domains.txt 
  • 사용자 지정 파일로 출력

$ python censys_enumeration.py --verbose --outfile results.json domains.txt

root@kitploit:~
도구 다운로드