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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
censys-subdomain-finder — ⚡ Censys의 인증서 투명성 로그를 사용하여 서브도메인 열거를 수행합니다. | Kitploit
도구/GitHubGitHub/christophetd/censys-subdomain-finder
OSINT (Open Source Intelligence)ReconnaissanceDNS & Subdomain EnumerationInformation GatheringSubdomain Enumeration
GitHubchristophetd/censys-subdomain-finder

censys-subdomain-finder

⚡ Censys의 인증서 투명성 로그를 사용하여 서브도메인 열거를 수행합니다.

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

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

Censys 서브도메인 파인더

중요 사항: 2024년 후반부터 Censys는 무료 계정에 API 액세스를 더 이상 제공하지 않습니다.

이 도구는 Censys Search에 저장된 인증서 투명성 로그를 사용하여 서브도메인을 열거합니다. 공개 CA에서 SSL 인증서를 발급받은 모든 서브도메인을 반환합니다.

실제 작동 모습:

root@kitploit:~
$ python censys-subdomain-finder.py github.com

[*] Searching Censys for subdomains of github.com
[*] Found 42 unique subdomains of github.com in ~1.7 seconds

  - hq.github.com
  - talks.github.com
  - cla.github.com
  - github.com
  - cloud.github.com
  - enterprise.github.com
  - help.github.com
  - collector-cdn.github.com
  - central.github.com
  - smtp.github.com
  - cas.octodemo.github.com
  - schrauger.github.com
  - jobs.github.com
  - classroom.github.com
  - dodgeball.github.com
  - visualstudio.github.com
  - branch.github.com
  - www.github.com
  - edu.github.com
  - education.github.com
  - import.github.com
  - styleguide.github.com
  - community.github.com
  - server.github.com
  - mac-installer.github.com
  - registry.github.com
  - f.cloud.github.com
  - offer.github.com
  - helpnext.github.com
  - foo.github.com
  - porter.github.com
  - id.github.com
  - atom-installer.github.com
  - review-lab.github.com
  - vpn-ca.iad.github.com
  - maintainers.github.com
  - raw.github.com
  - status.github.com
  - camo.github.com
  - support.enterprise.github.com
  - stg.github.com
  - rs.github.com

설정

  1. https://search.censys.io/register에서 계정을 등록합니다(무료).

  2. https://search.censys.io/account로 이동하여 API ID와 API 시크릿으로 두 개의 환경 변수를 설정합니다:

    root@kitploit:~
    export CENSYS_API_ID=...
    export CENSYS_API_SECRET=...
    

    또는 .env 파일을 사용하여 이러한 값을 여러 번 사용할 때 지속적으로 저장할 수 있습니다:

    root@kitploit:~
    cp .env.template .env
    

    그런 다음 .env 파일을 편집하여 CENSYS_API_ID 및 CENSYS_API_SECRET의 값을 설정합니다.

  3. 저장소를 클론합니다:

    root@kitploit:~
    git clone https://github.com/christophetd/censys-subdomain-finder.git
    
  4. 가상 환경에 종속성을 설치합니다:

    root@kitploit:~
    cd censys-subdomain-finder
    python3 -m venv venv
    source venv/bin/activate
    pip install -r requirements.txt
    

사용법

사용 예시:

root@kitploit:~
python censys-subdomain-finder.py example.com

서브도메인 목록을 텍스트 파일로 출력:

root@kitploit:~
python censys-subdomain-finder.py example.com -o subdomains.txt
root@kitploit:~
usage: censys-subdomain-finder.py [-h] [-o OUTPUT_FILE]
                                  [--censys-api-id CENSYS_API_ID]
                                  [--censys-api-secret CENSYS_API_SECRET]
                                  domain

positional arguments:
  domain                The domain to scan

optional arguments:
  -h, --help            show this help message and exit
  -o OUTPUT_FILE, --output OUTPUT_FILE
                        A file to output the list of subdomains to (default:
                        None)
  --censys-api-id CENSYS_API_ID
                        Censys API ID. Can also be defined using the
                        CENSYS_API_ID environment variable (default: None)
  --censys-api-secret CENSYS_API_SECRET
                        Censys API secret. Can also be defined using the
                        CENSYS_API_SECRET environment variable (default: None)

호환성

Python 3.7+에서 실행되어야 합니다.

참고 사항

Censys API는 5분 윈도우당 120개 쿼리의 제한 속도가 있습니다. 이 도구의 각 호출은 Censys에 정확히 하나의 API 호출을 합니다.

제안이나 의견이 있으면 이슈를 열거나 트윗 @christophetd로 보내주세요.

도구 다운로드