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

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

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

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

دليل الأدوات

الفئات

عرض جميع الفئات
Loading categories
autocrack — غلاف Hashcat للمساعدة في أتمتة عملية الكسر | Kitploit
أدوات/GitHubGitHub/timbo05sec/autocrack
كسر كلمات المرورهجمات كلمات المرورالبرمجة النصية والأتمتةالأدوات والمكونات
GitHubtimbo05sec/autocrack

autocrack

غلاف Hashcat للمساعدة في أتمتة عملية الكسر

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

الأكثر شعبية

عرض الكل →

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

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

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

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

AUTOCRACK.py

هذا النص البرمجي بلغة بايثون هو غلاف لـ Hashcat (https://hashcat.net) للمساعدة في أتمتة عملية الكسر. يتضمن النص البرمجي وظائف متعددة لاختيار مجموعة من قوائم الكلمات والقواعد، بالإضافة إلى القدرة على تشغيل هجوم القوة العمياء (bruteforce) بأقنعة مخصصة، قبل هجمات قوائم الكلمات/القواعد.

يستخدم Autocrack بايثون 3، والذي عادة ما يكون مثبتًا مسبقًا في توزيعات لينكس المختلفة. لتثبيت بايثون 3 في OS X، اتبع التعليمات هنا: http://docs.python-guide.org/en/latest/starting/install3/osx/.

تأكد من ضبط متغيرات المسار في بداية النص البرمجي.

root@kitploit:~
usage: autocrack.py [-h] [-b NUM] [-bm BRUTEMASK]
                    [-cr CUSTOMRULES] [-cw CUSTOMWL] [-f] [-i INPUTFILE]
                    [-l LOGFILE] [-lh [LISTHASHMODE]] [-lw {all,small,custom}]
                    [-m HASHMODE] [-p] [-pu] [-r {all,simple,singles,combos}]
                    [-s] [-t WLFILTER] [-u] [-w {all,small,custom}]
                    [-ws WORDLISTSIZE]

optional arguments:
  -h, --help            show this help message and exit
  -b NUM, --brute NUM   Start cracking with brute force. Specify max length (1-55)
  -bm BRUTEMASK, --brutemask BRUTEMASK
                        Character types to brute force (?a, ?u, ?l, ?s, ?d);
                        If only one type is specified, all positions will be
                        brute forced with that character type
  -cr CUSTOMRULES, --customrules CUSTOMRULES
                        Comma separated list of rules to run; rules are run in
                        the order of left to right
  -cw CUSTOMWL, --customwl CUSTOMWL
                        Comma separated list of the full path to one or more wordlists
  -f, --force           Pass the force parameter to Hashcat
  -i INPUTFILE, --inputfile INPUTFILE
                        Path to file with hashes
  -l LOGFILE, --logfile LOGFILE
                        Path to log the cracking session
  -lh [LISTHASHMODE], --listhashmode [LISTHASHMODE]
                        List hash types and their associated mode; provide a
                        keyword to filter results
  -lw {all,small,custom}, --listwordlists {all,small,custom}
                        List wordlists in BASESUPPORTFILESPATH/wordlists; -t
                        (filter) and -ws (wordlist size) can be used to affect
                        results
  -m HASHMODE, --hashmode HASHMODE
                        Hashcat cracking algorithm
  -p, --pwds            Output the list of cracked passwords (for pipal
                        analysis)
  -pu, --pwdsunique     Output a uniqued list of cracked passwords
  -r {all,simple,singles,combos}, --rules {all,simple,singles,combos}
                        Specify which hashcat set of rules to use
  -s, --show            Display cracked credentials
  -t WLFILTER, --wlfilter WLFILTER
                        Filters the wordlists to only include file names that
                        contain the keyword
  -u, --username        Pass the username parameter to Hashcat
  -v {0,1,2}, --verbose {0,1,2}
                        Specify a verbosity level: 0: Informational, 1:
                        Verbose, 2: Include Hashcat Output
  -w {all,small,custom}, --wordlists {all,small,custom}
                        Specify which set of wordlists to use; "custom" uses
                        the -ws option to specify the maximum file size
  -ws WORDLISTSIZE, --wordlistsize WORDLISTSIZE
                        Filter wordlists to files of a maximum number of
                        lines; Default = 500,000; 0 = all wordlists

المهام المتبقية:

  • إضافة وظيفة لتفريغ هاشات مجال AD بخطوة واحدة (lm -> nt)
  • إضافة دعم لمجموعات أحرف القناع المخصصة
  • تضمين هجمات الأقنعة
  • تتبع أي قوائم الكلمات / القواعد / الأقنعة تكسر كلمة المرور
  • تنفيذ سلسلة ماركوف
تنزيل الأداة