Skip to content
KitploitKITPLOIT
OutilsBlog
Soumettre
OutilsBlog
Soumettre

Outils de Hacking, PenTest et Cybersécurité pour votre Arsenal de Sécurité !

Kitploit est un répertoire d'outils de hacking, de cybersécurité et de pentesting. Découvrez les dernières mises à jour des projets pour trouver des vulnérabilités, analyser des systèmes, automatiser les tests et renforcer votre sécurité.

··Flux·Contact·Confidentialité·© 2026 Kitploit

Répertoire d'outils

Catégories

Voir toutes les catégories
Loading categories
gospider — Gospider - Araignée web rapide écrite en Go | Kitploit
Outils/GitHubGitHub/jaeles-project/gospider
OSINT (Renseignement de Sources Ouvertes)ReconnaissanceCollecte d'InformationsSécurité WebCrawler
GitHubjaeles-project/gospider

gospider

Gospider - Araignée web rapide écrite en Go

Voir le dépôt
3.0k334il y a 2 ansVérifié par Kitploit

Populaires

Voir tout →

Découvrez les outils les plus utilisés par notre communauté.

Explorer tous les outils

Parcourez notre collection d'outils

Voir tous les outils →
Partager

GoSpider

GoSpider - Araignée web rapide écrite en Go

Intégrer Gospider sans douleur dans votre workflow de reconnaissance ?

OsmedeusEngine

ce projet faisait partie du Osmedeus Engine. Découvrez comment il a été intégré sur @OsmedeusEngine

Installation

Installation via Go

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

Docker

root@kitploit:~
# Clonez le dépôt
git clone https://github.com/jaeles-project/gospider.git
# Construisez le conteneur
docker build -t gospider:latest gospider
# Lancez le conteneur
docker run -t gospider -h

Fonctionnalités

  • Exploration web rapide
  • Force brute et analyse de sitemap.xml
  • Analyse de robots.txt
  • Génération et vérification des liens à partir de fichiers JavaScript
  • Recherche de liens
  • Détection d'AWS-S3 à partir du source de réponse
  • Détection de sous-domaines à partir du source de réponse
  • Obtention d'URLs depuis Wayback Machine, Common Crawl, Virus Total, Alien Vault
  • Format de sortie facile à grep
  • Prise en charge de l'entrée Burp
  • Exploration de plusieurs sites en parallèle
  • User-Agent mobile/web aléatoire

Présentations

asciicast

Utilisation

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

Exemples de commandes

Sortie silencieuse

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

Exécution avec un seul site

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

Exécution avec une liste de sites

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

Exécution avec 20 sites simultanément avec 10 bots par site

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

Obtenir également des URLs de sources tierces (Archive.org, CommonCrawl.org, VirusTotal.com, AlienVault.com)

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

Obtenir également des URLs de sources tierces et inclure les sous-domaines

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

Utiliser des en-têtes/cookies personnalisés

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

Extension d'URL/fichier à exclure.

P/s: gospider a exclu par défaut .(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)"

Afficher et exclure la longueur des fichiers.

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

Licence

Gospider est fait avec ♥ par @j3ssiejjj et @thebl4ckturtle et est publié sous licence MIT.

Don

paypal

Télécharger l’outil