Linux command
acccheck 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Check
acccheck -t [192.168.1.1]
Example
acccheck -t [192.168.1.1] -u [administrator] -P [passwords.txt]
Example
acccheck -t [192.168.1.1] -U [users.txt] -P [passwords.txt]
Example
acccheck -T [targets.txt] -U [users.txt] -P [passwords.txt]
Example
acccheck -t [192.168.1.1] -U [users.txt] -P [passwords.txt] -v
说明
acccheck is a password dictionary attack tool designed specifically for Windows SMB authentication. It attempts to connect to the Windows IPC$ and ADMIN$ shares using provided credentials to identify valid username/password combinations. The tool is useful during penetration testing to identify weak or default passwords on Windows systems. It can test single credentials or iterate through wordlists for both usernames and passwords.
参数
- -t _target_
- Single target IP address.
- -T _file_
- File containing list of target IPs.
- -u _username_
- Single username to test.
- -U _file_
- File containing list of usernames.
- -p _password_
- Single password to test.
- -P _file_
- File containing list of passwords.
- -v
- Verbose mode (show all attempts).
FAQ
What is the acccheck command used for?
acccheck is a password dictionary attack tool designed specifically for Windows SMB authentication. It attempts to connect to the Windows IPC$ and ADMIN$ shares using provided credentials to identify valid username/password combinations. The tool is useful during penetration testing to identify weak or default passwords on Windows systems. It can test single credentials or iterate through wordlists for both usernames and passwords.
How do I run a basic acccheck example?
Run `acccheck -t [192.168.1.1]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -t _target_ do in acccheck?
Single target IP address.