Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
gospider — Gospider - Rápido rastreador web escrito en Go | Kitploit
Herramientas/GitHubGitHub/jaeles-project/gospider
OSINT (Inteligencia de Fuentes Abiertas)ReconocimientoRecopilación de InformaciónSeguridad WebCrawler
GitHubjaeles-project/gospider

gospider

Gospider - Rápido rastreador web escrito en Go

Ver Repositorio
3.0k334hace 2 añosRevisado por Kitploit

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

GoSpider

GoSpider - Rápido rastreador web escrito en Go

¿Integrar Gospider sin complicaciones en tu flujo de trabajo de reconocimiento?

OsmedeusEngine

este proyecto fue parte de Osmedeus Engine. Mira cómo fue integrado en @OsmedeusEngine

Instalación

Instalación con GO

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

Docker

root@kitploit:~
# Clone the repo
git clone https://github.com/jaeles-project/gospider.git
# Build the contianer
docker build -t gospider:latest gospider
# Run the container
docker run -t gospider -h

Características

  • Rastreo web rápido
  • Fuerza bruta y análisis de sitemap.xml
  • Analizar robots.txt
  • Generar y verificar enlaces desde archivos JavaScript
  • Buscador de enlaces
  • Encontrar AWS-S3 desde el código fuente de la respuesta
  • Encontrar subdominios desde el código fuente de la respuesta
  • Obtener URLs desde Wayback Machine, Common Crawl, Virus Total, Alien Vault
  • Formato de salida fácil de usar con Grep
  • Soporte para entrada de Burp
  • Rastrear múltiples sitios en paralelo
  • User-Agent aleatorio móvil/web

Demostraciones

asciicast

Uso

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

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

Ejemplos de comandos

Salida silenciosa

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

Ejecutar con un solo sitio

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

Ejecutar con lista de sitios

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

Ejecutar con 20 sitios al mismo tiempo con 10 bots por sitio

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

También obtener URLs desde terceros (Archive.org, CommonCrawl.org, VirusTotal.com, AlienVault.com)

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

También obtener URLs desde terceros (Archive.org, CommonCrawl.org, VirusTotal.com, AlienVault.com) e incluir subdominios

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

Usar cabeceras/cookies personalizadas

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

Lista negra de URL/extensión de archivo.

Nota: gospider tiene en lista negra .(jpg|jpeg|gif|css|tif|tiff|png|ttf|woff|woff2|ico) por defecto

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

Mostrar y poner en lista negra la longitud del archivo.

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

Licencia

Gospider está hecho con ♥ por @j3ssiejjj & @thebl4ckturtle y se publica bajo la licencia MIT.

Donación

paypal

Descargar herramienta