Untitled


SUBMITTED BY: Guest

DATE: Nov. 22, 2014, 9:30 a.m.

FORMAT: Text only

SIZE: 900 Bytes

HITS: 1314

  1. <html>
  2. <title>Plugins Detector</title>
  3. <body>
  4. <center>
  5. <h1>Plugins Detector</h1>
  6. <br>
  7. <form method="POST">
  8. <input type="submit" value="Detect" name="plug"/>
  9. <br>
  10. <br>
  11. </form>
  12. <?php
  13. $plugins='<div id="plugins">
  14. <script>
  15. var Plugins_Detector=false;
  16. if(navigator.plugins&&navigator.plugins.length){
  17. var plugins="";
  18. for(var i=0;i<navigator.plugins.length;i++){
  19. var name=navigator.plugins[i].name;
  20. var desc=navigator.plugins[i].description;
  21. if(name.indexOf("Java")!=-1)
  22. {
  23. Plugins_Detector=true
  24. }
  25. plugins+=name+"<br>"
  26. }
  27. document.getElementById("plugins").innerHTML=plugins
  28. }else{
  29. Plugins_Detector=true
  30. }
  31. </script>
  32. </div>';
  33. if($_POST["plug"]){
  34. print_r("<font color=red>".$plugins."</font><br><br>");
  35. }
  36. ?>
  37. Develop by Joker Dark Knight<br>
  38. </body>
  39. </html>

comments powered by Disqus