acccheck

作者: xncode | 来源:发表于2018-12-02 22:21 被阅读0次

工具介绍

The tool is designed as a password dictionary attack tool that targets windows authentication via the SMB protocol. It is really a wrapper script around the ‘smbclient’ binary, and as a result is dependent on it for its execution.

该工具是用于攻击 Windows的基于SMB协议的认证,是smbclient的包装。

使用方式

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]
OR
-T [file containing target ip address(es)]

Optional:
-p [single password]
-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

相关文章

  • acccheck

    acccheck-SMB的密码字典攻击工具 root@kali:~# acccheck acccheck v0.2...

  • acccheck

    工具介绍 The tool is designed as a password dictionary attack...

  • acccheck的使用

    介绍:一个基于微软SMB协议的口令攻击工具,IPC共享攻击工具用法:acccheck + [选项]参数: -t 后...

  • kali 学习笔记(目录)

    Kali Linux 工具使用中文说明书 信息收集 acccheck ace-voip Amap Auto...

网友评论

      本文标题:acccheck

      本文链接:https://www.haomeiwen.com/subject/ckiscqtx.html