Skip to content
KitploitKITPLOIT
ИнструментыБлог
Отправить
ИнструментыБлог
Отправить

Инструменты для хакинга, пентеста и кибербезопасности — ваш арсенал защиты!

Kitploit — это каталог инструментов для хакинга, кибербезопасности и пентестинга. Находите последние обновления проектов для поиска уязвимостей, анализа систем, автоматизации тестирования и усиления вашей безопасности.

··Ленты·Контакты·Конфиденциальность·© 2026 Kitploit

Каталог инструментов

Категории

Все категории
Loading categories
gospider — Gospider - быстрый веб-паук, написанный на Go | Kitploit
Инструменты/GitHubGitHub/jaeles-project/gospider
OSINT (Разведка открытых источников)РазведкаСбор информацииВеб-безопасностьКраулер
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 в исходном коде ответа
  • Поиск поддоменов в исходном коде ответа
  • Получение URL из Wayback Machine, Common Crawl, VirusTotal, AlienVault
  • Форматирование вывода для удобного поиска с помощью grep
  • Поддержка ввода из Burp
  • Параллельное сканирование нескольких сайтов
  • Случайный мобильный/веб User-Agent

Демонстрации

asciicast

Использование

root@kitploit:~
Fast web spider written in Go - v1.1.5 by @thebl4ckturtle & @j3essiejjj

Usage:
  gospider [flags]

Flags:
  -s, --site string               Site to crawl
  -S, --sites string              Site list to crawl
  -p, --proxy string              Proxy (Ex: http://127.0.0.1:8080)
  -o, --output string             Output folder
  -u, --user-agent string         User Agent to use
                                  	web: random web user-agent
                                  	mobi: random mobile user-agent
                                  	or you can set your special user-agent (default "web")
      --cookie string             Cookie to use (testA=a; testB=b)
  -H, --header stringArray        Header to use (Use multiple flag to set multiple header)
      --burp string               Load headers and cookie from burp raw http request
      --blacklist string          Blacklist URL Regex
      --whitelist string          Whitelist URL Regex
      --whitelist-domain string   Whitelist Domain
  -t, --threads int               Number of threads (Run sites in parallel) (default 1)
  -c, --concurrent int            The number of the maximum allowed concurrent requests of the matching domains (default 5)
  -d, --depth int                 MaxDepth limits the recursion depth of visited URLs. (Set it to 0 for infinite recursion) (default 1)
  -k, --delay int                 Delay is the duration to wait before creating a new request to the matching domains (second)
  -K, --random-delay int          RandomDelay is the extra randomized duration to wait added to Delay before creating a new request (second)
  -m, --timeout int               Request timeout (second) (default 10)
  -B, --base                      Disable all and only use HTML content
      --js                        Enable linkfinder in javascript file (default true)
      --subs                      Include subdomains
      --sitemap                   Try to crawl sitemap.xml
      --robots                    Try to crawl robots.txt (default true)
  -a, --other-source              Find URLs from 3rd party (Archive.org, CommonCrawl.org, VirusTotal.com, AlienVault.com)
  -w, --include-subs              Include subdomains crawled from 3rd party. Default is main domain
  -r, --include-other-source      Also include other-source's urls (still crawl and request)
      --debug                     Turn on debug mode
      --json                      Enable JSON output
  -v, --verbose                   Turn on verbose
  -l, --length                    Turn on length
  -L, --filter-length             Turn on length filter
  -R, --raw                       Turn on raw
  -q, --quiet                     Suppress all the output and only show URL
      --no-redirect               Disable redirect
      --version                   Check version
  -h, --help                      help for 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

Использование пользовательских заголовков/cookies

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

Blacklist url/file extension.

Прим.: 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

Скачать инструмент