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

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

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

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

دليل الأدوات

الفئات

عرض جميع الفئات
Loading categories
scilla — أداة جمع المعلومات - تعداد DNS / النطاقات الفرعية / المنافذ / الأدلة | Kitploit
أدوات/GitHubGitHub/edoardottt/scilla
الاستطلاعمسح المنافذتعداد DNS والنطاقات الفرعيةجمع المعلوماتاختبار الاختراقتعداد النطاقات الفرعيةتحليل DNS
GitHubedoardottt/scilla

scilla

أداة جمع المعلومات - تعداد DNS / النطاقات الفرعية / المنافذ / الأدلة

عرض المستودع
1.2k144منذ شهر واحدتمت المراجعة من قبل Kitploit

الأكثر شعبية

عرض الكل →

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

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

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

عرض جميع الأدوات →
مشاركة
الموقع الإلكتروني


🏴‍☠️ أداة جمع المعلومات 🏴‍☠️ - تعداد DNS / النطاقات الفرعية / المنافذ / الدلائل

go-report-card workflows
مبرمج بـ 💙 بواسطة edoardottt
شارك على تويتر!

تثبيت • ابدأ • أمثلة • سجل التغييرات • المساهمة • الترخيص

التثبيت 📡

Homebrew

root@kitploit:~
brew install scilla

Snap

root@kitploit:~
sudo snap install scilla

Golang

root@kitploit:~
go install -v github.com/edoardottt/scilla/cmd/scilla@latest

بناء من المصدر

تحتاج إلى Go (>=1.23)

بناء من المصدر لأنظمة لينكس وويندوز

لينكس

root@kitploit:~
git clone https://github.com/edoardottt/scilla.git
cd scilla
go get ./...
make linux # (to install)
make unlinux # (to uninstall)

قم بتعديل ملف ~/.config/scilla/keys.yaml إذا كنت تريد استخدام مفاتيح API.

سطر واحد: git clone https://github.com/edoardottt/scilla.git && cd scilla && go get ./... && make linux

ويندوز

لاحظ أن الملف التنفيذي يعمل فقط في مجلد cariddi (اسم مستعار؟).

root@kitploit:~
git clone https://github.com/edoardottt/scilla.git
cd scilla
.\make.bat windows # (to install)
.\make.bat unwindows # (to uninstall)

قم بإنشاء ملف keys.yaml إذا كنت تريد استخدام مفاتيح API.

باستخدام Docker

root@kitploit:~
docker build -t scilla .
docker run scilla help

أمثلة 💡

  • تعداد DNS:

    • scilla dns -target example.com
    • scilla dns -oj output -target example.com
    • scilla dns -oh output -target example.com
    • scilla dns -ot output -target example.com
    • scilla dns -plain -target example.com
  • تعداد النطاقات الفرعية:

    • scilla subdomain -target example.com
    • scilla subdomain -w wordlist.txt -target example.com
    • scilla subdomain -oj output -target example.com
    • scilla subdomain -oh output -target example.com
    • scilla subdomain -ot output -target example.com
    • scilla subdomain -i 400 -target example.com

ابدأ 🎉

scilla help يطبع المساعدة في سطر الأوامر.

root@kitploit:~
usage: scilla subcommand { options }

   Available subcommands:
       - dns [-oj JSON output file]
             [-oh HTML output file]
             [-ot TXT output file]
             [-plain Print only results]
             -target <target (URL/IP)> REQUIRED
       - port [-p <start-end> or ports divided by comma]
              [-oj JSON output file]
              [-oh HTML output file]
              [-ot TXT output file]
              [-common scan common ports]
              [-plain Print only results]
              -target <target (URL/IP)> REQUIRED
       - subdomain [-w wordlist]
                   [-oj JSON output file]
                   [-oh HTML output file]
                   [-ot TXT output file]
                   [-i ignore status codes]
                   [-c use also a web crawler]
                   [-db use also a public database]
                   [-plain Print only results]
                   [-db -no-check Don't check status codes for subdomains]
                   [-db -vt Use VirusTotal as subdomains source]
                   [-db -bw Use BuiltWith as subdomains source]
                   [-ua Set the User Agent]
                   [-rua Generate a random user agent for each request]
                   [-dns Set DNS IP to resolve the subdomains]
                   [-alive Check also if the subdomains are alive]
                   -target <target (URL)> REQUIRED
       - dir [-w wordlist]
             [-oj JSON output file]
             [-oh HTML output file]
             [-ot TXT output file]
             [-i ignore status codes]
             [-c use also a web crawler]
             [-plain Print only results]
             [-nr No follow redirects]
             [-ua Set the User Agent]
             [-rua Generate a random user agent for each request]
             -target <target (URL/IP)> REQUIRED
       - report [-p <start-end> or ports divided by comma]
                [-ws subdomains wordlist]
                [-wd directories wordlist]
                [-oj JSON output file]
                [-oh HTML output file]
                [-ot TXT output file]
                [-id ignore status codes in directories scanning]
                [-is ignore status codes in subdomains scanning]
                [-cd use also a web crawler for directories scanning]
                [-cs use also a web crawler for subdomains scanning]
                [-db use also a public database for subdomains scanning]
                [-common scan common ports]
                [-nr No follow redirects]
                [-db -vt Use VirusTotal as subdomains source]
                [-ua Set the User Agent]
                [-rua Generate a random user agent for each request]
                [-dns Set DNS IP to resolve the subdomains]
                [-alive Check also if the subdomains are alive]
                -target <target (URL)> REQUIRED
       - help
       - examples

سجل التغييرات 📌

التغييرات التفصيلية لكل إصدار موثقة في ملاحظات الإصدار.

المساهمة 🛠

ما عليك سوى فتح مشكلة / طلب سحب.

قبل فتح طلب سحب، قم بتنزيل golangci-lint وتشغيل

root@kitploit:~
golangci-lint run

إذا لم تكن هناك أخطاء، تفضل :)

للقيام به:

  • إضافة المزيد من الاختبارات

  • دعم Tor

  • دعم الوكيل

في الأخبار 📰

  • Kali Linux Tutorials
  • GeeksForGeeks.org
  • Brisk Infosec
  • Kalitut

الترخيص 📝

هذا المستودع مرخص بموجب رخصة GNU العامة العامة v3.0.
edoardottt.com للتواصل معي.

تنزيل الأداة
  • scilla subdomain -i 4** -target example.com
  • scilla subdomain -c -target example.com
  • scilla subdomain -db -target example.com
  • scilla subdomain -plain -target example.com
  • scilla subdomain -db -no-check -target example.com
  • scilla subdomain -db -vt -target example.com
  • scilla subdomain -db -bw -target example.com
  • scilla subdomain -ua "CustomUA" -target example.com
  • scilla subdomain -rua -target example.com
  • scilla subdomain -dns 8.8.8.8 -target example.com
  • scilla subdomain -alive -target example.com
  • تعداد الدلائل:

    • scilla dir -target example.com
    • scilla dir -w wordlist.txt -target example.com
    • scilla dir -oj output -target example.com
    • scilla dir -oh output -target example.com
    • scilla dir -ot output -target example.com
    • scilla dir -i 500,401 -target example.com
    • scilla dir -i 5**,401 -target example.com
    • scilla dir -c -target example.com
    • scilla dir -plain -target example.com
    • scilla dir -nr -target example.com
    • scilla dir -ua "CustomUA" -target example.com
    • scilla dir -rua -target example.com
  • تعداد المنافذ:

    • افتراضي (جميع المنافذ، لذا 1-65635) scilla port -target example.com
    • تحديد نطاق المنافذ scilla port -p 20-90 -target example.com
    • تحديد منفذ البداية (حتى الأخير) scilla port -p 20- -target example.com
    • تحديد منفذ النهاية (من الأول) scilla port -p -90 -target example.com
    • تحديد منافذ متعددة scilla port -p 21,25,80 -target example.com
    • تحديد المنافذ الشائعة scilla port -common -target example.com
    • تحديد منفذ واحد scilla port -p 80 -target example.com
    • تحديد تنسيق الإخراج (json) scilla port -oj output -target example.com
    • تحديد تنسيق الإخراج (html) scilla port -oh output -target example.com
    • تحديد تنسيق الإخراج (txt) scilla port -ot output -target example.com
    • طباعة النتائج فقط scilla port -plain -target example.com
  • تقرير كامل:

    • افتراضي (جميع المنافذ، لذا 1-65635) scilla report -target example.com
    • تحديد نطاق المنافذ scilla report -p 20-90 -target example.com
    • تحديد منفذ البداية (حتى الأخير) scilla report -p 20- -target example.com
    • تحديد منفذ النهاية (من الأول) scilla report -p -90 -target example.com
    • تحديد منفذ واحد scilla report -p 80 -target example.com
    • تحديد منافذ متعددة scilla report -p 21,25,80 -target example.com
    • تحديد تنسيق الإخراج (json) scilla report -oj output -target example.com
    • تحديد تنسيق الإخراج (html) scilla report -oh output -target example.com
    • تحديد تنسيق الإخراج (txt) scilla report -ot output -target example.com
    • تحديد قائمة كلمات الدلائل scilla report -wd dirs.txt -target example.com
    • تحديد قائمة كلمات النطاقات الفرعية scilla report -ws subdomains.txt -target example.com
    • تحديد أكواد الحالة المراد تجاهلها في مسح الدلائل scilla report -id 500,501,502 -target example.com
    • تحديد أكواد الحالة المراد تجاهلها في مسح النطاقات الفرعية scilla report -is 500,501,502 -target example.com
    • تحديد فئات أكواد الحالة المراد تجاهلها في مسح الدلائل scilla report -id 5**,4** -target example.com
    • تحديد فئات أكواد الحالة المراد تجاهلها في مسح النطاقات الفرعية scilla report -is 5**,4** -target example.com
    • استخدام زاحف ويب أيضًا لتعداد الدلائل scilla report -cd -target example.com
    • استخدام زاحف ويب أيضًا لتعداد النطاقات الفرعية scilla report -cs -target example.com
    • استخدام قاعدة بيانات عامة أيضًا لتعداد النطاقات الفرعية scilla report -db -target example.com
    • تحديد المنافذ الشائعة scilla report -common -target example.com
    • عدم متابعة عمليات إعادة التوجيه scilla report -nr -target example.com
    • استخدام VirusTotal كمصدر للنطاقات الفرعية scilla report -db -vt -target example.com
    • تعيين وكيل المستخدم scilla report -ua "CustomUA" -target example.com
    • إنشاء وكيل مستخدم عشوائي لكل طلب scilla report -rua -target example.com
    • تعيين IP DNS لحل النطاقات الفرعية scilla report -dns 8.8.8.8 -target example.com
    • التحقق أيضًا مما إذا كانت النطاقات الفرعية حية scilla report -alive -target example.com