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

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

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

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

دليل الأدوات

الفئات

عرض جميع الفئات
Loading categories
spraygen — مُولِّد قوائم كلمات المرور لرش كلمات المرور - مُجهَّز مسبقًا بميزات إضافية | Kitploit
أدوات/GitHubGitHub/3ndg4me/spraygen
كسر كلمات المرورهجمات كلمات المرورجمع المعلوماتاختبار الاختراق
GitHub3ndg4me/spraygen

spraygen

مُولِّد قوائم كلمات المرور لرش كلمات المرور - مُجهَّز مسبقًا بميزات إضافية

عرض المستودع
11321منذ 3 سنواتتمت المراجعة من قبل Kitploit

الأكثر شعبية

عرض الكل →

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

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

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

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

Spraygen

مولّد قوائم كلمات المرور لرش كلمات المرور - مُعدّ مسبقاً مع إضافات مفيدة

الإصدار 1.7

يولّد تباديل للأشهر، الفصول، السنوات، الفرق الرياضية (NFL, NBA, MLB, NHL)، نتائج المباريات، "Password"، وحتى مساحات المفاتيح القابلة للتكرار بحجم محدد.

جميع التباديل تُولّد مع سمات شائعة ملحقة/مسبوقة (مثل "!" أو "#")، أو فواصل مخصصة (مثل "." أو "_").

خيار استبدال الحروف الشائعة (تغيير كل A إلى 4/@ مثلاً)

يمكن للمستخدمين توسيع السمات والفواصل باستخدام قوائم مفصولة بفواصل من الأحرف.

يقبل Spraygen أيضاً كلمات مفردة أو قوائم كلمات خارجية تسمح لك بتوليد قوائم كلمات مخصصة مضبوطة بالإضافة إلى ما هو متاح بالفعل.

يمكنك استخدام أدوات مثل crunch، أو حلقة bash متقنة على SecLists، أو أي شيء آخر ولكن ذلك يستغرق وقتاً... هذه الأداة صُمّمت للرش، لذا انطلق!

root@kitploit:~
python3 spraygen.py -h
     _
    (  \_
    (    \_
    (       \_  
    (         \_            ___
    ( Password   \         |   |
    (   Spray     |คคคคคคคค|___|
    (           _ /          |
    (       _ /         /~~~~~~~~~\
    (   _ /            (  Spray    )
    (_/                 |  This   |
                        |         |
                        | Get     |
                        |  Creds  |
                        |_________|

    Original Art by Alex Chudnovsky (Unaffiliated)
    Spraygen tool by 3ndG4me
    Version 1.7
    
usage: spraygen.py [-h] [--year_start YEAR_START] [--year_end YEAR_END] [-s separators] [-a attributes] [-w wordlist] [-n single word] [--mode {all,nosep,noattr,years,plain,letter,quick,custom}]
                   [--type {all,iterative,sports,nfl,nba,mlb,nhl,months,seasons,password,common,short,custom} [{all,iterative,sports,nfl,nba,mlb,nhl,months,seasons,password,common,short,custom} ...]]
                   [--iter {ascii,num,spec,asciinum,asciispec,numspec,full}] [--size SIZE] [--min_length MIN_LENGTH] [--max_length MAX_LENGTH] [-o output file] [-p] [--sort {nosort,asc,desc,random}] [-v]

Parse Spray List Arguments.

optional arguments:
  -h, --help            show this help message and exit
  --year_start YEAR_START
                        starting year for a range of years
  --year_end YEAR_END   ending year for a range of years
  -s separators         a comma delimited list of one or more separators
  -a attributes         a comma delimited list of one or more attributes
  -w wordlist           path to a custom wordlist
  -n single word        single custom word to generate a custom wordlist with
  --mode {all,nosep,noattr,years,plain,letter,quick,custom}
                        Mode for list generation. Can be all, no separators, no attributes, only years, plain, letter, quick, or custom (will only use parameters passed into -s or -a).
  --type {all,iterative,sports,nfl,nba,mlb,nhl,months,seasons,password,common,short,custom} [{all,iterative,sports,nfl,nba,mlb,nhl,months,seasons,password,common,short,custom} ...]
                        Type of list to generate. Can be all, iterative, sports, nfl, nba, mlb, nhl, months, seasons, password, common, short, or custom. Choosing 'all' executes all options except for 'iterative' which
                        must be run manually.
  --iter {ascii,num,spec,asciinum,asciispec,numspec,full}
                        Keyspace mode for iterative list generation. Only works when --type is set to 'iterative'. Can be ascii, num, spec, asciinum, asciispec, numspec, or full. Will generate all permutations of the
                        selected keyspace with a given length set with the --size parameter.
  --size SIZE           Length of passwords generated by a set keyspace. Only works when --type is set to 'iterative' and an --iter keyspace mode is set.
  --min_length MIN_LENGTH
                        Minimum length of passwords to include in the list. (Default: 1)
  --max_length MAX_LENGTH
                        Maximum length of passwords to include in the list (Default: 999)
  -o output file        name of a file to create and write the final output to
  -p                    prints the output line by line as plaintext
  --sort {nosort,asc,desc,random}
                        Sort final output. Sorting methods supported are nosort, asc, desc, random.
  -v                    prints the current version of spraygen and exits

الاستخدام الأساسي

  1. تثبيت التبعيات pip3 install -r requirements.txt
  2. تشغيل python3 spraygen.py -p - سيولّد جميع قوائم الكلمات المدمجة الافتراضية مع جميع التباديل ويطبعها على الشاشة

توصيات الاستخدام

  • وثائق الاستخدام

الإسناد

  • @MarkoH17 - لإصلاح التوافق العكسي المنطقي بايثون 3.8
  • @absolomb - لتحسين اختيار النوع ومنطق السمات في توليد السنوات
تنزيل الأداة