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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
webanalyze — 대량 스캔을 자동화하기 위해 Wappalyzer(웹사이트에서 사용되는 기술을 발견하는 도구)를 포팅한 버전입니다. | Kitploit
도구/GitHubGitHub/rverton/webanalyze
OSINT (Open Source Intelligence)ReconnaissanceInformation GatheringWeb SecurityUtilities & FrameworksCrawler
GitHubrverton/webanalyze

webanalyze

대량 스캔을 자동화하기 위해 Wappalyzer(웹사이트에서 사용되는 기술을 발견하는 도구)를 포팅한 버전입니다.

저장소 보기
1.2k154912일 전Kitploit 검토 완료

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

webanalyze

Go로 작성된 Wappalyzer의 포트입니다. 이 도구는 고성능을 목표로 설계되었으며, 대규모 호스트 목록을 테스트할 수 있습니다.

[!NOTE] Wappalyzer가 앱 정의에 대한 공개 접근을 제거했기 때문에, webanalyze는 현재 enthec에서 정의를 로드합니다.

설치 및 사용법

사전 컴파일된 릴리스

사전 컴파일된 릴리스는 여기에서 직접 다운로드할 수 있습니다.

빌드

직접 빌드하려면:

root@kitploit:~
$ go install -v github.com/rverton/webanalyze/cmd/webanalyze@latest

사용법

root@kitploit:~
$ webanalyze -update # wappalyzer 프로젝트에서 새로운 technologies.json 파일을 로드합니다
$ webanalyze -h
Usage of webanalyze:
  -apps string
        앱 정의 파일. (기본값 "technologies.json")
  -crawl int
        루트 페이지에서 따라갈 링크 수 (기본값 0)
  -header value
        사용자 지정 HTTP 요청 헤더, 반복 가능 (예: 'User-Agent: webanalyze')
  -host string
        테스트할 단일 호스트
  -hosts string
        호스트 목록이 포함된 파일 이름, 한 줄에 하나의 호스트.
  -output string
        출력 형식 (stdout|csv|json) (기본값 "stdout")
  -search
        동일한 기본 도메인의 모든 URL 검색 (예: example.com 및 sub.example.com) (기본값 true)
  -silent
	    헤더 출력 생략 (기본값 false)
  -update
        앱 파일 업데이트
  -worker int
        워커 수 (기본값 4)

-update 플래그는 enthec에서 최신 버전의 technologies.json을 다운로드합니다.

사용자 지정 요청 헤더는 여러 번 지정할 수 있습니다:

root@kitploit:~
$ webanalyze -host example.com -header "User-Agent: Mozilla/5.0" -header "Authorization: Bearer token"

Docker

root@kitploit:~
# 저장소 클론
git clone https://github.com/rverton/webanalyze.git
# 컨테이너 빌드
docker build -t webanalyze:latest webanalyze
# 컨테이너 실행
docker run -it webanalyze:latest -h

개발 / 라이브러리로 사용

라이브러리로 사용하는 방법에 대한 예제는 cmd/webanalyze/main.go를 참조하세요.

예제

root@kitploit:~
$ ./webanalyze -host robinverton.de -crawl 1
 :: webanalyze        : v1.0
 :: workers           : 4
 :: apps              : technologies.json
 :: crawl count       : 1
 :: search subdomains : true

https://robinverton.de/hire/ (0.5s):
    Highlight.js,  (Miscellaneous)
    Netlify,  (Web Servers, CDN)
    Google Font API,  (Font Scripts)
http://robinverton.de (0.8s):
    Highlight.js,  (Miscellaneous)
    Netlify,  (Web Servers, CDN)
    Hugo, 0.42.1 (Static Site Generator)
    Google Font API,  (Font Scripts)

$ ./webanalyze -host robinverton.de -crawl 1 -output csv
 :: webanalyze        : v1.0
 :: workers           : 4
 :: apps              : technologies.json
 :: crawl count       : 1
 :: search subdomains : true

Host,Category,App,Version
https://robinverton.de/hire/,Miscellaneous,Highlight.js,
https://robinverton.de/hire/,Font Scripts,Google Font API,
https://robinverton.de/hire/,"Web Servers,CDN",Netlify,
http://robinverton.de,"Web Servers,CDN",Netlify,
http://robinverton.de,Static Site Generator,Hugo,0.42.1
http://robinverton.de,Miscellaneous,Highlight.js,
http://robinverton.de,Font Scripts,Google Font API,
도구 다운로드