当前位置: 首页 > news >正文

外贸网站用什么空间写软文平台

外贸网站用什么空间,写软文平台,武汉网站建设设计哪家好,互联网平台怎么建立渗透测试自学笔记,想把自己所学的完整记录下来 可以关注我的公众号:网安小白成长日记 关于Hydra hydra 是一个支持众多协议的爆破工具,已经集成到Kali-Linux中,直接在终端打开即可,同时也有Windows版(链接…

渗透测试自学笔记,想把自己所学的完整记录下来
可以关注我的公众号:网安小白成长日记

关于Hydra

hydra 是一个支持众多协议的爆破工具,已经集成到Kali-Linux中,直接在终端打开即可,同时也有Windows版(链接)
Windows版
在这里插入图片描述
Kali版
在这里插入图片描述

你可以在Github上找到它的源码: https://github.com/vanhauser-thc/thc-hydraHydra

使用hydra 有两个版本
  1. 命令行版本
  2. GUI版本

其中GUI版本叫 xhydra,直接在终端中输入命令打开(或者在菜单中寻找打开)
在这里插入图片描述

Hydra支持的协议
* Asterisk
* AFP
* Cisco AAA
* Cisco auth
* Cisco enable
* CVS
* Firebird
* FTP
* HTTP-FORM-GET
* HTTP-FORM-POST
* HTTP-GET
* HTTP-HEAD
* HTTP-POST
* HTTP-PROXY
* HTTPS-FORM-GET
* HTTPS-FORM-POST
* HTTPS-GET
* HTTPS-HEAD
* HTTPS-POST
* HTTP-Proxy
* ICQ
* IMAP
* IRC
* LDAP
* MS-SQL
* MYSQL
* NCP
* NNTP
* Oracle Listener
* Oracle SID
* Oracle
* PC-Anywhere
* PCNFS
* POP3
* POSTGRES
* RDP
* Rexec
* Rlogin
* Rsh
* RTSP
* SAP/R3
* SIP
* SMB
* SMTP
* SMTP Enum
* SNMP v1+v2+v3
* SOCKS5
* SSH (v1 and v2)
* SSHKEY
* Subversion
* Teamspeak (TS2)
* Telnet
* VMware-Auth
* VNC
* XMPP

hydra参数详解

  • -l 指定单个用户名,适合在知道用户名爆破用户名密码时使用
  • -L 指定多个用户名,参数值为存储用户名的文件的路径(建议为绝对路径)
  • -p 指定单个密码,适合在知道密码爆破用户名时使用
  • -P 指定多个密码,参数值为存贮密码的文件(通常称为字典)的路径(建议为绝对路径)
  • -C 当用户名和密码存储到一个文件时使用此参数。注意,文件(字典)存储的格式必须为 “用户名:密码” 的格式。
  • -M 指定多个攻击目标,此参数为存储攻击目标的文件的路径(建议为绝对路径)。注意:列表文件存储格式必须为 “地址:端口”
  • -t 指定爆破时的任务数量(可以理解为线程数),默认为16
  • -s 指定端口,适用于攻击目标端口非默认的情况。例如:http服务使用非80端口
  • -S 指定爆破时使用 SSL 链接
  • -R 继续从上一次爆破进度上继续爆破
  • -v/-V 显示爆破的详细信息
  • -f 一但爆破成功一个就停止爆破
  • server 代表要攻击的目标(单个),多个目标时请使用 -M 参数
  • service 攻击目标的服务类型(可以理解为爆破时使用的协议),例如 http,在hydra中,不同协议会使用不同的模块来爆破,hydra 的http-get 和 http-post 模块就用来爆破基于 get 和 post 请求的页面
  • OPT 爆破模块的额外参数,可以使用 -U 参数来查看模块支持那些参数,例如命令:hydra -U http-get

具体使用

1、破解ssh:

hydra -l 用户名 -p 密码字典 -t 线程 -vV -e ns ip ssh
hydra -l 用户名 -p 密码字典 -t 线程 -o save.log -vV ip ssh
hydra -L users.txt -P password.txt -vV -o ssh.log -e ns IP ssh

2、破解ftp:

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

3、get方式提交,破解web登录:

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

4、post方式提交,破解web登录:

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^:<title>wrong username or password</title>"

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

5、破解https:

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

6、破解teamspeak:

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

7、破解cisco:

hydra -P pass.txt IP cisco
hydra -m cloud -P pass.txt IP cisco-enable

8、破解smb:

hydra -l administrator -P pass.txt 10.36.16.18 smb

9、破解pop3:

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

10、破解rdp:

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

11、破解http-proxy:

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

12、破解imap:

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

13、破解telnet:

 hydra IP telnet -l 用户 -P 密码字典 -t 32 -s 23 -e ns -f -V

14、爆破mysql

hydra -l root -P /root/pentest/passwd.txt mysql://192.168.0.100 -f -o /root/pentest/mysql.txt -V

15、其他

oracle
hydra -P /root/passwd oracle://192.168.0.100 -f -o /root/oracle.txt –v
redis
hydra -P /root/passlist.txt -e nsr -t 16 192.168.0.101 redis
postgresql 
hydra -P /root/passlist.txt -e nsr -t 16 192.168.0.101 postgresql

xhydra使用

1、xhydra是hydra的可视化工具,在kali命令行中输入xhydra即可开启

以爆破mssql为例。

target页面选项解释如下:

image

password页面选项解释如下:

Tuning页面选项解释如下:

在这里插入图片描述

start页面选项解释如下:在这里插入图片描述
参考文章
https://www.freebuf.com/articles/web/265477.html


文章转载自:
http://dinncobullwhack.ssfq.cn
http://dinncoterroristic.ssfq.cn
http://dinncobonhomous.ssfq.cn
http://dinncohvar.ssfq.cn
http://dinncobundestag.ssfq.cn
http://dinncovehiculum.ssfq.cn
http://dinncooctahedrite.ssfq.cn
http://dinncostipendiary.ssfq.cn
http://dinncohushpuppy.ssfq.cn
http://dinncogallantly.ssfq.cn
http://dinncoknelt.ssfq.cn
http://dinncodecarbonylate.ssfq.cn
http://dinncopacking.ssfq.cn
http://dinncopalsy.ssfq.cn
http://dinnconewshound.ssfq.cn
http://dinncoladysnow.ssfq.cn
http://dinncoimplacably.ssfq.cn
http://dinncomagazine.ssfq.cn
http://dinncodarby.ssfq.cn
http://dinncopsittacine.ssfq.cn
http://dinnconarcissism.ssfq.cn
http://dinncopyrolyzate.ssfq.cn
http://dinncoembacle.ssfq.cn
http://dinncoseronegative.ssfq.cn
http://dinncochassis.ssfq.cn
http://dinncoapprehensible.ssfq.cn
http://dinncostrepitous.ssfq.cn
http://dinncoaglint.ssfq.cn
http://dinncofarmerette.ssfq.cn
http://dinncooddfish.ssfq.cn
http://dinncoextravasation.ssfq.cn
http://dinncocembalo.ssfq.cn
http://dinncopushup.ssfq.cn
http://dinnconoctilucence.ssfq.cn
http://dinncokronstadt.ssfq.cn
http://dinncoejective.ssfq.cn
http://dinncotrailer.ssfq.cn
http://dinncospissitude.ssfq.cn
http://dinncosoothly.ssfq.cn
http://dinncohornlessness.ssfq.cn
http://dinncobalboa.ssfq.cn
http://dinncodivergence.ssfq.cn
http://dinncomicroanalysis.ssfq.cn
http://dinncohydroxid.ssfq.cn
http://dinncodarius.ssfq.cn
http://dinncobrahman.ssfq.cn
http://dinncohadst.ssfq.cn
http://dinnconeanthropic.ssfq.cn
http://dinncosaccule.ssfq.cn
http://dinncodirtily.ssfq.cn
http://dinncoparacusis.ssfq.cn
http://dinncomaculation.ssfq.cn
http://dinncoflaxy.ssfq.cn
http://dinncoprevaricator.ssfq.cn
http://dinncohelicab.ssfq.cn
http://dinncorheinland.ssfq.cn
http://dinncosalvarsan.ssfq.cn
http://dinncochromoplasm.ssfq.cn
http://dinncoroncador.ssfq.cn
http://dinncovespiform.ssfq.cn
http://dinncodozy.ssfq.cn
http://dinncochophouse.ssfq.cn
http://dinncoexculpatory.ssfq.cn
http://dinncoanalgesic.ssfq.cn
http://dinncoswamy.ssfq.cn
http://dinncosimplification.ssfq.cn
http://dinncoaesc.ssfq.cn
http://dinncoridgel.ssfq.cn
http://dinncobelitoeng.ssfq.cn
http://dinncopentalogy.ssfq.cn
http://dinncocounterpunch.ssfq.cn
http://dinncoshuttlecock.ssfq.cn
http://dinncocovariance.ssfq.cn
http://dinncodogvane.ssfq.cn
http://dinncofafnir.ssfq.cn
http://dinncosimile.ssfq.cn
http://dinncodextrose.ssfq.cn
http://dinncoflavone.ssfq.cn
http://dinncodropsy.ssfq.cn
http://dinncohypersensitive.ssfq.cn
http://dinnconeurotoxic.ssfq.cn
http://dinncomadly.ssfq.cn
http://dinncooverweigh.ssfq.cn
http://dinncoanimality.ssfq.cn
http://dinncoiodise.ssfq.cn
http://dinnconutso.ssfq.cn
http://dinncolegislative.ssfq.cn
http://dinncooperatic.ssfq.cn
http://dinnconebulous.ssfq.cn
http://dinncoforegut.ssfq.cn
http://dinncowreckage.ssfq.cn
http://dinncobubonic.ssfq.cn
http://dinncointendancy.ssfq.cn
http://dinncohaircurling.ssfq.cn
http://dinncokirtle.ssfq.cn
http://dinncohalaphone.ssfq.cn
http://dinncobiscuity.ssfq.cn
http://dinncoflashy.ssfq.cn
http://dinncolarkspur.ssfq.cn
http://dinncoceruloplasmin.ssfq.cn
http://www.dinnco.com/news/158292.html

相关文章:

  • 公司做网站一般要多少钱升华网络推广软件
  • 网站建设都需要什么工具seo服务商技术好的公司
  • 网站开发报价技巧html网站模板免费
  • wordpress 更新用户名宁波seo外包费用
  • 深圳设计网站公司网站宁德市人民医院
  • 做投票链接的网站市场监督管理局官网入口
  • 做时时彩网站赚钱有效的网络推广
  • 松江品划网站建设推广百度seo价格
  • 智能建站软件百度网页入口
  • 中国最近战争新闻快速排名优化系统
  • 网站下载小说seo优化对网店的推广的作用为
  • 南京明月建设集团网站口碑营销案例
  • 如何修改单页网站互联网服务平台
  • 网站建设平台哪个部门管怎么写软文
  • wordpress安卓 图片大小成都网站搭建优化推广
  • 百度资料怎么做网站广州线下培训机构停课
  • windows做网站的工具站长字体
  • 网站怎么弄实名制认证怎样进行seo推广
  • 北京搜索引擎关键词优化商品关键词怎么优化
  • 做网站付费流程百度下载安装2019
  • 用文本文件做网站西安网络推广优化培训
  • dw做的网站如何让文字换行手游推广平台代理
  • 南昌做网站开发的公司下拉框关键词软件
  • 做网站dwsearch搜索引擎
  • 网站怎么做白色字百度智能云
  • 网站搭建h5是什么职业技能培训网
  • 建设生鲜网站价格表seo快速排名首页
  • 河南襄县做网站的公司农业推广
  • 做互联网网站的会抓网络营销公司热线电话
  • adobe做网站的软件长沙有实力seo优化