acccheck ----- 破解使用SMB協議的Windows用戶密碼

SMB是一種網絡通信協議,使用SMB協議可以實現不同類型設備之間數據傳遞。例如,文件、打印機共享也是基於這個協議。

root@kali:~# acccheck 

acccheck v0.2.1 - By Faiz

Description:
Attempts to connect to the IPC$ and ADMIN$ shares depending on which flags have been
chosen, and tries a combination of usernames and passwords in the hope to identify
the password to a given account via a dictionary password guessing attack.

Usage = ./acccheck [optional]  //用法

 -t [single host IP address]  //單個的ip地址
 OR 
 -T [file containing target ip address(es)]  //包含多個ip地址的文件

Optional:  //可選項
 -p [single password]  //單個ip
 -P [file containing passwords]  //密碼字典
 -u [single user]  //單個用戶名
 -U [file containing usernames]  //用戶字典
 -v [verbose mode]  //顯示詳情

Examples
Attempt the 'Administrator' account with a [BLANK] password.
    acccheck -t 10.10.10.1
Attempt all passwords in 'password.txt' against the 'Administrator' account.
    acccheck -t 10.10.10.1 -P password.txt
Attempt all password in 'password.txt' against all users in 'users.txt'.
    acccehck -t 10.10.10.1 -U users.txt -P password.txt
Attempt a single password against a single user.
    acccheck -t 10.10.10.1 -u administrator -p password


Example:

這裏寫圖片描述

使用密碼字典

這裏寫圖片描述

PS:注意命令大小寫
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章