Skip to content
KitploitKITPLOIT
أدواتالمدونة
إرسال
أدواتالمدونة
إرسال

أدوات الاختراق واختبار الاختراق والأمن السيبراني لترسانتك الأمنية!

Kitploit هو دليل لأدوات الاختراق والأمن السيبراني واختبار الاختراق. اكتشف آخر تحديثات المشاريع للعثور على الثغرات وتحليل الأنظمة وأتمتة الاختبارات وتعزيز أمنك.

··الخلاصات·اتصال·الخصوصية·© 2026 Kitploit

دليل الأدوات

الفئات

عرض جميع الفئات
Loading categories
أدوات/GitHubGitHub/jaeles-project/gospider
الاستخبارات مفتوحة المصدر (OSINT)الاستطلاعجمع المعلوماتأمن الويبزاحف الويب
GitHubjaeles-project/gospider

gospider

Gospider - عنكبوت ويب سريع مكتوب بلغة Go

عرض المستودع
3.0k334منذ 2 سنواتتمت المراجعة من قبل Kitploit

الأكثر شعبية

عرض الكل →

اكتشف الأدوات الأكثر استخدامًا من قبل مجتمعنا.

استكشف جميع الأدوات

تصفح مجموعتنا من الأدوات

عرض جميع الأدوات →
مشاركة
gospider — Gospider - عنكبوت ويب سريع مكتوب بلغة Go | Kitploit

GoSpider

GoSpider - عنكبوت ويب سريع مكتوب بلغة Go

دمج Gospider بسهولة في سير عمل الاستطلاع الخاص بك؟

OsmedeusEngine

كان هذا المشروع جزءًا من محرك Osmedeus. تحقق من كيفية دمجه على @OsmedeusEngine

التثبيت

تثبيت باستخدام 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

الميزات

  • زحف ويب سريع
  • استخراج وتحليل sitemap.xml بالقوة
  • تحليل robots.txt
  • توليد والتحقق من الروابط من ملفات JavaScript
  • مكتشف الروابط
  • العثور على AWS-S3 من مصدر الاستجابة
  • العثور على نطاقات فرعية من مصدر الاستجابة
  • الحصول على عناوين URL من Wayback Machine وCommon Crawl وVirusTotal وAlienVault
  • تنسيق الإخراج ليكون سهلًا للبحث باستخدام Grep
  • دعم إدخال Burp
  • زحف مواقع متعددة بالتوازي
  • وكيل مستخدم عشوائي للجوال/الويب

عروض توضيحية

asciicast

الاستخدام

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

أمثلة الأوامر

إخراج هادئ

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

تنزيل الأداة