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.2k1544개월 전Kitploit 검토 완료

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

webanalyze

Go로 작성된 Wappalyzer의 포트입니다. 이 도구는 성능에 최적화되어 있으며 대규모 호스트 목록을 테스트할 수 있습니다.

Wappalyzer가 앱 정의에 대한 공개 액세스를 제거했기 때문에 webanalyze는 현재 enthec에서 정의를 로드합니다.

설치 및 사용법

사전 컴파일된 릴리스

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

빌드

직접 빌드하려면:

root@kitploit:~
$ go install -v github.com/rverton/webanalyze/cmd/webanalyze@latest
$ webanalyze -update # loads new technologies.json file from wappalyzer project
$ webanalyze -h
Usage of webanalyze:
  -apps string
        app definition file. (default "technologies.json")
  -crawl int
        links to follow from the root page (default 0)
  -host string
        single host to test
  -hosts string
        filename with hosts, one host per line.
  -output string
        output format (stdout|csv|json) (default "stdout")
  -search
        searches all urls with same base domain (i.e. example.com and sub.example.com) (default true)
  -silent
	    avoid printing header (default false)
  -update
        update apps file
  -worker int
        number of worker (default 4)

-update 플래그는 wappalyzer 저장소에서 최신 버전의 technologies.json을 현재 폴더로 다운로드합니다.

Docker

root@kitploit:~
# Clone the repo
git clone https://github.com/rverton/webanalyze.git
# Build the container
docker build -t webanalyze:latest webanalyze
# Run the container
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,
도구 다운로드