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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
gospider — Gospider - Go로 작성된 빠른 웹 스파이더 | Kitploit
도구/GitHubGitHub/jaeles-project/gospider
OSINT (Open Source Intelligence)ReconnaissanceInformation GatheringWeb SecurityCrawler
GitHubjaeles-project/gospider

gospider

Gospider - Go로 작성된 빠른 웹 스파이더

저장소 보기
3.0k3342년 전Kitploit 검토 완료

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

GoSpider

GoSpider - Go로 작성된 빠른 웹 스파이더

GoSpider를 리콘 워크플로우에 손쉽게 통합하세요?

OsmedeusEngine

이 프로젝트는 Osmedeus Engine의 일부였습니다. @OsmedeusEngine에서 통합 방법을 확인하세요.

설치

GO 설치

root@kitploit:~
GO111MODULE=on go install github.com/jaeles-project/gospider@latest

Docker

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

기능

  • 빠른 웹 크롤링
  • sitemap.xml 무차별 대입 및 파싱
  • robots.txt 파싱
  • JavaScript 파일에서 링크 생성 및 확인
  • 링크 파인더
  • 응답 소스에서 AWS-S3 찾기
  • 응답 소스에서 서브도메인 찾기
  • Wayback Machine, Common Crawl, Virus Total, Alien Vault에서 URL 가져오기
  • grep하기 쉬운 형식으로 출력
  • Burp 입력 지원
  • 여러 사이트를 병렬로 크롤링
  • 모바일/웹 무작위 User-Agent

시연

asciicast

사용법

root@kitploit:~
Go로 작성된 빠른 웹 스파이더 - v1.1.5 by @thebl4ckturtle & @j3ssiejjj

사용법:
  gospider [플래그]

플래그:
  -s, --site string               크롤링할 사이트
  -S, --sites string              크롤링할 사이트 목록
  -p, --proxy string              프록시 (예: http://127.0.0.1:8080)
  -o, --output string             출력 폴더
  -u, --user-agent string         사용할 User-Agent
                                  	web: 무작위 웹 user-agent
                                  	mobi: 무작위 모바일 user-agent
                                  	또는 특별한 user-agent 설정 가능 (기본값 "web")
      --cookie string             사용할 쿠키 (testA=a; testB=b)
  -H, --header stringArray        사용할 헤더 (여러 헤더를 설정하려면 플래그를 여러 번 사용)
      --burp string               Burp 원시 HTTP 요청에서 헤더와 쿠키 로드
      --blacklist string          블랙리스트 URL 정규식
      --whitelist string          화이트리스트 URL 정규식
      --whitelist-domain string   화이트리스트 도메인
  -t, --threads int               스레드 수 (사이트를 병렬로 실행) (기본값 1)
  -c, --concurrent int            일치하는 도메인의 최대 허용 동시 요청 수 (기본값 5)
  -d, --depth int                 방문한 URL의 재귀 깊이 제한 (무한 재귀는 0으로 설정) (기본값 1)
  -k, --delay int                 일치하는 도메인에 새 요청을 보내기 전 대기 시간 (초)
  -K, --random-delay int          Delay에 추가되는 임의의 대기 시간 (초)
  -m, --timeout int               요청 시간 초과 (초) (기본값 10)
  -B, --base                      모든 기능 비활성화 및 HTML 콘텐츠만 사용
      --js                        JavaScript 파일에서 linkfinder 활성화 (기본값 true)
      --subs                      서브도메인 포함
      --sitemap                   sitemap.xml 크롤링 시도
      --robots                    robots.txt 크롤링 시도 (기본값 true)
  -a, --other-source              타사에서 URL 찾기 (Archive.org, CommonCrawl.org, VirusTotal.com, AlienVault.com)
  -w, --include-subs              타사에서 크롤링된 서브도메인 포함. 기본값은 메인 도메인
  -r, --include-other-source      other-source의 URL도 포함 (여전히 크롤링 및 요청 수행)
      --debug                     디버그 모드 켜기
      --json                      JSON 출력 활성화
  -v, --verbose                   상세 출력 켜기
  -l, --length                    길이 표시 켜기
  -L, --filter-length             길이 필터 켜기
  -R, --raw                       원시 출력 켜기
  -q, --quiet                     모든 출력 억제 및 URL만 표시
      --no-redirect               리디렉션 비활성화
      --version                   버전 확인
  -h, --help                      gospider 도움말

예제 명령어

조용한 출력

root@kitploit:~
gospider -q -s "https://google.com/"

단일 사이트 실행

root@kitploit:~
gospider -s "https://google.com/" -o output -c 10 -d 1

사이트 목록 실행

root@kitploit:~
gospider -S sites.txt -o output -c 10 -d 1

20개 사이트를 동시에 실행 (각 사이트당 10개 봇)

root@kitploit:~
gospider -S sites.txt -o output -c 10 -d 1 -t 20

타사에서 URL도 가져오기 (Archive.org, CommonCrawl.org, VirusTotal.com, AlienVault.com)

root@kitploit:~
gospider -s "https://google.com/" -o output -c 10 -d 1 --other-source

타사에서 URL도 가져오고 서브도메인 포함하기

root@kitploit:~
gospider -s "https://google.com/" -o output -c 10 -d 1 --other-source --include-subs

사용자 정의 헤더/쿠키 사용

root@kitploit:~
gospider -s "https://google.com/" -o output -c 10 -d 1 --other-source -H "Accept: */*" -H "Test: test" --cookie "testA=a; testB=b"

gospider -s "https://google.com/" -o output -c 10 -d 1 --other-source --burp burp_req.txt

URL/파일 확장자 블랙리스트

참고: gospider는 기본적으로 .(jpg|jpeg|gif|css|tif|tiff|png|ttf|woff|woff2|ico)를 블랙리스트에 포함합니다.

root@kitploit:~
gospider -s "https://google.com/" -o output -c 10 -d 1 --blacklist ".(woff|pdf)"

파일 길이 표시 및 블랙리스트

root@kitploit:~
gospider -s "https://google.com/" -o output -c 10 -d 1 --length --filter-length "6871,24432"   

라이선스

Gospider는 ♥로 @j3ssiejjj & @thebl4ckturtle이(가) 만들었으며 MIT 라이선스로 배포됩니다.

후원

paypal

도구 다운로드