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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
endsfuzzer — 도메인 목록을 퍼징하여 특정 엔드포인트를 찾습니다. | Kitploit
도구/GitHubGitHub/ameenalkerdy/endsfuzzer
Information GatheringWeb SecurityFuzzing
GitHubameenalkerdy/endsfuzzer

endsfuzzer

도메인 목록을 퍼징하여 특정 엔드포인트를 찾습니다.

저장소 보기
3년 전아직 검토되지 않음

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

endsfuzzer

Go Report Card

endsfuzzer는 특정 엔드포인트에 대해 도메인 목록을 퍼징하는 간단한 도구입니다. 목록에 있는 모든 도메인에 대해 하나의 엔드포인트를 확인한 후, 다음 엔드포인트로 넘어가 확인합니다.

기능

  • 빠름. Go 루틴을 활용합니다.
  • 서버에 부담이 적음. 한 번에 하나의 엔드포인트에 대해 모든 호스트를 퍼징합니다.
  • 철저함. HTTPS (포트 443)와 HTTP (포트 80)를 확인합니다.

설치

endsfuzzer는 실행을 위해 Golang이 필요합니다.

root@kitploit:~
go get -u github.com/ameenalkurdy/endsfuzzer

사용법

root@kitploit:~
Usage of endsfuzzer:
  -dL string
        Path to domains list (required)
  -eL string
        Path to endpoints list (required)
  -threads int
        Threads Number (default 40)
  -timeout int
        Connection timeout in seconds (default 15)

퍼징할 호스트가 포함된 파일에는 스킴(https/http)이 없어야 합니다.

root@kitploit:~
endsfuzzer -dL domains.txt -eL quickhits.txt
root@kitploit:~
endsfuzzer -dL domains.txt -eL quickhits.txt -timeout 20 -threads 50

출력:

root@kitploit:~
https://about.example.com/admin 403
http://dev.example.com/admin 302 -> https://www.example.com/
https://secure.example.com/admin 200
https://about.example.com/cgi-bin 403
http://dev.example.com/cgi-bin 302 -> https://www.example.com/
https://secure.example.com/cgi-bin 403
도구 다운로드