<html>
<title>Plugins Detector</title>
<body>
<center>
<h1>Plugins Detector</h1>
<br>
<form method="POST">
<input type="submit" value="Detect" name="plug"/>
<br>
<br>
</form>
<?php
$plugins='<div id="plugins">
<script>
var Plugins_Detector=false;
if(navigator.plugins&&navigator.plugins.length){
var plugins="";
for(var i=0;i<navigator.plugins.length;i++){
var name=navigator.plugins[i].name;
var desc=navigator.plugins[i].description;
if(name.indexOf("Java")!=-1)
{
Plugins_Detector=true
}
plugins+=name+"<br>"
}
document.getElementById("plugins").innerHTML=plugins
}else{
Plugins_Detector=true
}
</script>
</div>';
if($_POST["plug"]){
print_r("<font color=red>".$plugins."</font><br><br>");
}
?>
Develop by Joker Dark Knight<br>
</body>
</html>