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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
bbot — 해커를 위한 재귀적 인터넷 스캐너. 🧡 | Kitploit
도구/GitHubGitHub/blacklanternsecurity/bbot
OSINT (Open Source Intelligence)ReconnaissanceVulnerability ScannersInformation GatheringWeb SecurityPenetration TestingThreat IntelligenceSubdomain EnumerationEmail HarvestingCrawlerDNS Analysis
10.3k8983016일 전Kitploit 검토 완료

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유
GitHub
blacklanternsecurity/bbot

bbot

해커를 위한 재귀적 인터넷 스캐너. 🧡

저장소 보기웹사이트

bbot_banner

Python Version License PyPi Downloads Ruff Tests Codecov Discord

BEE·bot은 Spiderfoot에서 영감을 받은 다목적 스캐너로, Recon(리콘), Bug Bounties(버그 바운티), ASM을 자동화하도록 제작되었습니다!

https://github.com/blacklanternsecurity/bbot/assets/20261699/e539e89b-92ea-46fa-b893-9cde94eebf81

VivaGraphJS로 시각화한 실시간 BBOT 스캔

설치

root@kitploit:~
# stable version
pipx install bbot

# bleeding edge (dev branch)
pipx install --pip-args '\--pre' bbot

Docker를 포함한 더 많은 설치 방법은 Getting Started를 참조하세요

2.x에서 업그레이드하시나요? BBOT 3.0에는 CLI, 프리셋, 모듈, 이벤트 및 Python API에 대한 주요 변경 사항이 포함되어 있습니다. 업그레이드 전에 2.x → 3.0 마이그레이션 가이드(소스)를 확인하세요.

속도 팁: BBOT의 DNS 리졸버(blastdns)는 /etc/resolv.conf의 리졸버마다 여러 스레드를 생성합니다. 필터링되지 않은 리졸버를 더 추가하면 스캔 속도가 크게 빨라집니다. 자세한 내용은 샘플 resolv.conf와 팁과 요령을 참조하세요.

예제 명령어

1) 서브도메인 파인더

패시브 API 소스와 타겟별 서브도메인 변형을 이용한 재귀적 DNS 무차별 대입(brute-force).

root@kitploit:~
# find subdomains of evilcorp.com
bbot -t evilcorp.com -p subdomain-enum

# passive sources only
bbot -t evilcorp.com -p subdomain-enum -rf passive
subdomain-enum.yml
root@kitploit:~
description: Enumerate subdomains via APIs, brute-force

flags:
  # enable every module with the subdomain-enum flag
  - subdomain-enum

output_modules:
  # output unique subdomains to TXT file
  - subdomains

config:
  dns:
    threads: 25
    brute_threads: 1000
  # put your API keys here
  # modules:
  #   github:
  #     api_key: ""
  #   chaos:
  #     api_key: ""
  #   securitytrails:
  #     api_key: ""

BBOT은 다른 도구보다 지속적으로 20-50% 더 많은 서브도메인을 찾아냅니다. 도메인이 클수록 그 차이는 더 커집니다. 이것이 어떻게 가능한지 알아보려면 작동 방식을 참조하세요.

subdomain-stats-ebay

2) 웹 스파이더

root@kitploit:~
# crawl evilcorp.com, extracting emails and other goodies
bbot -t evilcorp.com -p spider
spider.yml
root@kitploit:~
description: Recursive web spider

modules:
  - http

blacklist:
  # Prevent spider from invalidating sessions by logging out
  - "RE:/.*(sign|log)[_-]?out"

config:
  web:
    # how many links to follow in a row
    spider_distance: 2
    # don't follow links whose directory depth is higher than 4
    spider_depth: 4
    # maximum number of links to follow per page
    spider_links_per_page: 25

3) 이메일 수집기

root@kitploit:~
# quick email enum with free APIs + scraping
bbot -t evilcorp.com -p email-enum

# pair with subdomain enum + web spider for maximum yield
bbot -t evilcorp.com -p email-enum subdomain-enum spider
email-enum.yml
root@kitploit:~
description: Enumerate email addresses from APIs, web crawling, etc.

flags:
  - email-enum

output_modules:
  - emails

4) 웹 스캐너

root@kitploit:~
# run a light web scan against www.evilcorp.com
bbot -t www.evilcorp.com -p web

# run a heavy web scan against www.evilcorp.com
bbot -t www.evilcorp.com -p web-heavy
web.yml
root@kitploit:~
description: Quick web scan

include:
  - iis-shortnames

flags:
  - web

web-heavy.yml
root@kitploit:~
description: Aggressive web scan

include:
  # include the web preset
  - web

flags:
  - web-heavy

5) 모든 것을 한꺼번에

root@kitploit:~
# everything everywhere all at once
bbot -t evilcorp.com -p kitchen-sink

# roughly equivalent to:
bbot -t evilcorp.com -p subdomain-enum cloud-enum code-enum email-enum spider web paramminer webbrute web-screenshots
kitchen-sink.yml
root@kitploit:~
description: Everything everywhere all at once

include:
  - subdomain-enum
  - cloud-enum
  - code-enum
  - email-enum
  - spider
  - web
  - paramminer
  - webbrute
  - web-screenshots
  - baddns-heavy

config:
  modules:
    dnsbrute:
      recursive_mutations: true
    dnscommonsrv:
      recursive_mutations: true
    webbrute:
      avoid_wafs: False
    wayback:
      urls: True
      parameters: True
      archive: True

작동 방식

아래 그래프를 클릭하여 BBOT의 내부 동작 방식을 살펴보세요.

image

출력 모듈

  • Neo4j
  • Teams
  • Discord
  • Slack
  • Postgres
  • MySQL
  • SQLite
  • Splunk
  • Elasticsearch
  • CSV
  • JSON
  • HTTP
  • Websocket

...그리고 더 보기!

Python 라이브러리로서의 BBOT

동기(Synchronous)

root@kitploit:~
from bbot.scanner import Scanner

if __name__ == "__main__":
    scan = Scanner("evilcorp.com", presets=["subdomain-enum"])
    for event in scan.start():
        print(event)

비동기(Asynchronous)

root@kitploit:~
from bbot.scanner import Scanner


async def main():
    scan = Scanner("evilcorp.com", presets=["subdomain-enum"])
    async for event in scan.async_start():
        print(event.json())


if __name__ == "__main__":
    import asyncio

    asyncio.run(main())
보기: 이 사악한 디스코드 봇

/scan 명령에 응답하는 BBOT 디스코드 봇입니다. 디스코드 서버에서 편안하게 인터넷을 스캔하세요!

bbot-discord

기능 개요

  • 다중 타겟 지원
  • 웹 스크린샷
  • 공격적 웹 모듈 모음
  • NLP 기반 서브도메인 변형
  • Neo4j(및 기타) 기본 출력
  • Ansible을 통한 자동 의존성 설치
  • 사용자 정의 YARA 규칙으로 전체 공격 표면 검색
  • Python API + 개발자 문서

타겟

BBOT은 -t를 통해 무제한의 타겟을 허용합니다. 타겟은 명령줄에서 직접 지정하거나 파일로 지정할 수 있습니다(둘 다 가능!):

root@kitploit:~
bbot -t evilcorp.com evilcorp.org 1.2.3.0/24 -p subdomain-enum

타겟은 다음 중 하나가 될 수 있습니다:

  • DNS 이름 (evilcorp.com)
  • IP 주소 (1.2.3.4)
  • IP 범위 (1.2.3.0/24)
  • 열린 TCP 포트 (192.168.0.1:80)
  • URL (https://www.evilcorp.com)
  • 이메일 주소 ([email protected])
  • 조직 (ORG:evilcorp)
  • 사용자 이름 (USER:bobsmith)
  • 파일시스템 (FILESYSTEM:/tmp/asdf)
  • 모바일 앱 (MOBILE_APP:https://play.google.com/store/apps/details?id=com.evilcorp.app)

자세한 내용은 타겟을 참조하세요. BBOT이 범위(scope)를 처리하는 방법을 알아보려면 범위를 참조하세요.

API 키

Amass나 Subfinder와 유사하게, BBOT은 SecurityTrails 등 다양한 서드파티 서비스의 API 키를 지원합니다.

일반적인 방법은 ~/.config/bbot/secrets.yml 에 API 키를 입력하는 것입니다. 여러 API 키를 사용할 수 있습니다:

root@kitploit:~
modules:
  shodan_dns:
    api_key: 4f41243847da693a4f356c0486114bc6
  c99:
    # multiple API keys
    api_key:
      - 21a270d5f59c9b05813a72bb41707266
      - ea8f243d9885cf8ce9876a580224fd3c
      - 5bc6ed268ab6488270e496d3183a1a27
  virustotal:
    api_key: dd5f0eee2e4a99b71a939bded450b246
  securitytrails:
    api_key: d9a05c3fd9a514497713c54b4455d0b0

원한다면 명령줄에서도 지정할 수 있습니다:

root@kitploit:~
bbot -c modules.virustotal.api_key=dd5f0eee2e4a99b71a939bded450b246

자세한 내용은 구성을 참조하세요.

모듈, 플래그 등의 전체 목록

  • 모듈 전체 목록.
  • 플래그 전체 목록.
  • 프리셋 전체 목록.
    • 전역 구성 옵션 전체 목록.
    • 모듈 구성 옵션 전체 목록.

문서

  • 사용자 매뉴얼
    • 기본
      • 시작하기
      • 작동 방식
      • 다른 도구와의 비교
    • 스캐닝
      • 스캐닝 개요
      • 프리셋
        • 개요
        • 프리셋 목록
      • 이벤트
      • 출력
      • 팁과 요령
      • 고급 사용법
      • 구성
      • 스캔 검증
    • 모듈
      • 모듈 목록
      • 내부 모듈
      • Nuclei
      • Wayback
      • 사용자 정의 YARA 규칙
      • Lightfuzz
      • Webbrute

기여

최고의 BBOT 모듈 중 상당수는 커뮤니티에서 작성되었습니다. BBOT은 지속적으로 개선되고 있으며, 나날이 더 강력해지고 있습니다!

코드뿐만 아니라 아이디어도 환영합니다! 새로운 기능에 대한 아이디어가 있다면 Discussions에서 알려주세요. 직접 참여하고 싶다면 기여를 참조하세요. 여기에서 BBOT 모듈 작성 방법에 대한 설정 지침과 간단한 튜토리얼을 찾을 수 있습니다. 또한 방대한 개발자 문서도 제공됩니다.

BBOT에 기여해 주신 놀라운 분들께 감사드립니다! ❤️

특별히 감사드립니다:

  • BBOT을 만든 @TheTechromancer
  • badsecrets와 baddns를 포함한 BBOT의 웹 해킹 기능에 많은 작업을 기여한 @liquidsec
  • Spiderfoot을 만든 Steve Micallef (@smicallef)
  • Neo4j와 Ansible 전문 지식을 제공한 @kerrymilan
  • 멋진 코드 수집 계열 모듈을 만든 @domwhewell-sage
  • 철저한 테스트를 수행한 @aconite33와 @amiremami
  • bbot Pypi 저장소의 소유권을 양도해 주신 Aleksei Kornev (@alekseiko) <3
도구 다운로드
마이그레이션
  • 2.x → 3.0 주요 변경 사항
  • 기타
    • 기여
    • 릴리스 기록
    • 문제 해결
  • 개발자 매뉴얼
    • 개발 개요
    • 개발 환경 설정
    • 핵심 의존성
    • BBOT 내부 아키텍처
    • BBOT 모듈 작성 방법
    • 프리셋 검증 및 점검
    • 단위 테스트
    • 디스코드 봇 예제
    • 코드 참조
      • Scanner
      • Presets
      • Event
      • Target
      • BaseModule
      • BBOTCore
      • 헬퍼
        • 개요
        • 명령
        • DNS
        • Interactsh
        • 기타
        • Web
        • 워드 클라우드