업데이트로 돌아가기
New releaseSep 1, 2026

webanalyze v0.4.5

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

공유

webanalyze

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

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

설치 및 사용법

사전 컴파일된 릴리스

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

빌드

직접 빌드하려면:

$ go install -v github.com/rverton/webanalyze/cmd/webanalyze@latest

사용법

$ 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을 다운로드합니다.

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

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

Docker

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

개발 / 라이브러리로 사용

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

예제

$ ./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,

카테고리