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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
webtech — 웹사이트에 사용된 기술 식별 | Kitploit
도구/GitHubGitHub/shieldersec/webtech
ReconnaissanceInformation GatheringWeb Security
GitHubshieldersec/webtech

webtech

웹사이트에 사용된 기술 식별

저장소 보기웹사이트
297491개월 전Kitploit 검토 완료

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

WebTech

웹사이트에서 사용된 기술을 식별합니다. 릴리스 블로그 게시글에서 더 많은 정보.

CLI 설치

WebTech는 pip로 사용할 수 있습니다:

root@kitploit:~
pip install webtech

setup.py를 통해서도 설치할 수 있습니다:

root@kitploit:~
python setup.py install --user

Burp 통합

Jython 2.7.0 스탠드얼론 버전을 다운로드하여 Burp에 설치하세요.

"Extender" > "Options" > "Python Environment"에서:

  • Jython jar 파일 위치를 선택하세요

마지막으로 "Extender" > "Extension"에서:

  • "Add"를 클릭하세요
  • 확장 포맷으로 "py" 또는 "Python"을 선택하세요
  • 이 폴더에 있는 Burp-WebTech.py 파일을 선택하세요

사용법

웹사이트 스캔:

root@kitploit:~
$ webtech -u https://example.com/

대상 URL: https://example.com
...

$ webtech -u file://response.txt

대상 URL:
...

전체 사용법:

root@kitploit:~
$ webtech -h

Usage: webtech [options]

Options:
  -h, --help            show this help message and exit
  -u URLS, --urls=URLS  url(s) to scan
  --ul=URLS_FILE, --urls-file=URLS_FILE
                        url(s) list file to scan
  --ua=USER_AGENT, --user-agent=USER_AGENT
                        use this user agent
  --rua, --random-user-agent
                        use a random user agent
  --db=DB_FILE, --database-file=DB_FILE
                        custom database file
  --oj, --json          output json-encoded report
  --og, --grep          output grepable report
  --udb, --update-db    force update of remote db files

WebTech를 라이브러리로 사용

root@kitploit:~
import webtech

# you can use options, same as from the command line
wt = webtech.WebTech(options={'json': True})

# scan a single website
try:
  report = wt.start_from_url('https://shielder.it')
  print(report)
except webtech.utils.ConnectionException:
  print("Connection error")

더 많은 예제는 webtech_example.py를 참조하세요.

데이터베이스 매칭을 위한 리소스

HTTP 헤더 정보 - http://netinfo.link/http/headers.html
쿠키 이름 - https://webcookies.org/top-cookie-names

도구 다운로드