#!/bin/sh
#
# based on a script by Shivang Desai <shivang.ice.2010@gmail.com>
#
echo
echo "Welcome to the Hydra Wizard"
echo
read -p "Enter the service to attack (eg: ftp, ssh, http-post-form): " service
test -z "$service" && { echo Error: service may not be empty ; exit 1 ; }
read -p "Enter the target to attack (or filename with targets): " target
test -z "$target" && { echo Error: target may not be empty ; exit 1 ; }
read -p "Enter a username to test or a filename: " user
test -z "$user" && { echo Error: user may not be empty ; exit 1 ; }
read -p "Enter a password to test or a filename: " pass
test -z "$pass" && { echo Error: pass may not be empty ; exit 1 ; }
read -p "If you want to test for passwords (s)ame as login, (n)ull or (r)everse login, enter these letters without spaces (e.g. \"sr\") or leave empty otherwise: " pw
read -p "Port number (press enter for default): " port
echo
echo The following options are supported by the service module:
hydra -U $service
echo
read -p "If you want to add module options, enter them here (or leave empty): " opt
echo
ports=""
pws=""
opts=""
test -e "$target" && targets="-M $target"
test -e "$target" || targets="$target"
test -e "$user" && users="-L $user"
test -e "$user" || users="-l $user"
test -e "$pass" && passs="-P $pass"
test -e "$pass" || passs="-p $pass"
test -n "$port" && ports="-s $port"
test -n "$pw" && pws="-e $pw"
test -n "$opt" && opts="-m '$opt'"
echo The following command will be executed now:
echo " hydra $users $passs -u $pws $ports $opts $targets $service"
echo
read -p "Do you want to run the command now? [Y/n] " yn
test "$yn" = "n" -o "$yn" = "N" && { echo Exiting. ; exit 0 ; }
echo
hydra $users $passs -u $pws $ports $opts $targets $service
Roc-xb
- 粉丝: 13w+
- 资源: 7850
最新资源
- 一个简单的更改所在目录文件名称的py脚本
- 基于Java的商务贸易管理系统设计与实现
- FANUC机器人折弯动作生成使用指南
- 非关系形数据库redis安装包
- 三款便捷高效的文件转换PDF转JPG、PPT转JPG、JPG转PDF小工具,支持右键、拖拽、批量互转工具.rar
- CorelDRAW vba cdr插件 带有中文译文的帮助文档
- Matlab 基于迁移学习的滚动轴承故障诊断 1.运行环境Matlab2021b及以上,该程序将一维轴承振动信号转为二维尺度图图像并使用预训练网络应用迁移学习对轴承故障进行分类,平均准确率在98%左右
- 锂电池Matlab仿真二阶RC等效电路模型 用m代码编写 两个工况:HPPC CC
- MATLAB四旋翼自适应控制仿真simulink simscape,可更成自己的无人机solidworks模型 有公式手册需MATLAB2017版本以上
- 六旋翼无人机PID模型,飞行器本体模型,位置控制,姿态控制,控制分配和电机控制
- 电动汽车定速巡航控制器 基于整车纵向动力学作为仿真模型 输入为目标车速,输出为驱动力矩、实际车速,包含PID模块 控制精度在0.2之内,定速效果非常好 自主开发,详细讲解,包含 资料内含.slx文件、
- 实验6 学生成绩管理系统实验报告(综合性实验).doc
- 通过动态规划优化PHEV能量管理
- 04fd6daf697bd9edabccfefd333fe2b4.zip
- C#上位机与omron欧姆龙 Fins TCP通信以太网通讯实例 源码 通过和PLC用网络连接,可以读取写入欧姆龙PLC的数据寄存器DM(批量也可以)、输入输出CIO、辅助继电器WR,H保持继电器等
- 90°180°旋转滚轮滚筒输送线sw12可编辑全套技术资料100%好用.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈