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

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

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

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

دليل الأدوات

الفئات

عرض جميع الفئات
Loading categories
AD-description-password-finder — استرجاع وصف حسابات AD والبحث عن كلمة مرور فيها | Kitploit
أدوات/GitHubGitHub/assurancemaladiesec/ad-description-password-finder
أدوات دفاعيةكسر كلمات المرورهجمات كلمات المرورجمع المعلوماتما بعد الاستغلالاختبار الاختراقالمصادقةسوء التكوين

الأكثر شعبية

عرض الكل →

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

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

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

عرض جميع الأدوات →
GitHub
assurancemaladiesec/ad-description-password-finder

AD-description-password-finder

استرجاع وصف حسابات AD والبحث عن كلمة مرور فيها

عرض المستودع
81119منذ 4 سنواتتمت المراجعة من قبل Kitploit
مشاركة

مكتشف كلمات المرور في وصف Active Directory

الغرض من هذه الأداة هو التحقق مما إذا كانت كلمات المرور مخزنة كنص واضح في حقل الوصف لحسابات Active Directory.

المتطلبات هي:

  • الحصول على نسخة من ntds.dit و hive SYSTEM

إذا لم يكن لديك Python، يمكنك استخدام نسخة .exe من السكربتات الموجودة في مجلد binary في هذا المستودع.

حالة استخدام الفريق الأزرق (Blue Team)

تريد التحقق مما إذا كانت كلمات المرور مخزنة في حقل الوصف لحسابات Active Directory في مؤسستك.

اختبار الاختراق الداخلي / الفريق الأحمر (Red Team)

مرحلة ما بعد الاستغلال: نجحت في استخراج ntds.dit و hive SYSTEM، وأثناء كسر الـ hashes، تريد التحقق مما إذا كانت بعض كلمات المرور النصية الصريحة متاحة في حقل الوصف لحسابات Active Directory.

المتطلبات

  • Python 3
  • six
  • pycryptodomex

التثبيت

ثبّت المتطلبات

root@kitploit:~
$ git clone https://github.com/AssuranceMaladieSec/AD-description-password-finder.git
$ pip3 install -r requirements.txt

الاستخدام

check_description.py

root@kitploit:~
> python check_description.py -h
usage: check_description.py [-h] [-system SYSTEM] [-ntds NTDS] [-ts] [-debug]

optional arguments:
  -h, --help      show this help message and exit
  -system SYSTEM  SYSTEM hive to parse. MANDATORY
  -ntds NTDS      NTDS.DIT file to parse. MANDATORY
  -ts             Adds timestamp to every logging output during hashes extraction
  -debug          Turn DEBUG output ON during hashes extraction



> python check_description.py -ntds ntds\ntds.dit -system ntds\SYSTEM

Extracting hash and descriptions in the ntds

Saving output to ntds/output.ntds

Creating hash file in './output/description_hashes.json' and plain text file in './output/description_plain.json'

Done!

Loading ./output/description_hashes.json

Loading ./output/description_plain.json

Loading ./ntds/output.ntds

We have 9 user's descriptions to analyze

Done!

We found 4 CONFIRMED password in the accounts description

2 accounts are SUSPECTED of exposing their passwords and need to be verified by a HUMAN

You can find the results in the file ./results/2022-07-21_17h8_results.txt

That's all folks!

مثال على ملف النتائج

root@kitploit:~
CONFIRMED_LEAK - Disabled user - password for user adm-test-alice2 found in description: Achanger6Achanger6!
CONFIRMED_LEAK - Enabled (probably) user - password for user adm-test-alice found in description: Achanger1Achanger2!
SUSPECTED_LEAK - Enabled (probably) user - SUSPECTED password for user anakin in the description: here we go "pwd=test01!"
SUSPECTED_LEAK - Enabled (probably) user - SUSPECTED password for user ahsoka in the description: The new one for test (password=test054!)
CONFIRMED_LEAK - Enabled (probably) user - password for user mariatest02 found in description: test02!
CONFIRMED_LEAK - Enabled (probably) user - password for user blanqui found in description: woof01!

استخدام impacket

تستخدم هذه الأداة نسخة معدّلة من كود secretdump من مكتبة Impacket.

Impacket هي أداة من SECUREAUTH LABS. حقوق النشر (C) 2022 SecureAuth Corporation. جميع الحقوق محفوظة.

المؤلف

  • Alice Climent-Pommeret ([email protected])

الترخيص

رخصة جنو العمومية العامة (GPL) الإصدار 3

تنزيل الأداة