Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | None | 0 0
  1. <!-- <?php
  2.  
  3.  
  4.  
  5. $arrss = file('keys.txt');
  6.  
  7. if (in_array(htmlspecialchars($_POST['password']), $arrss)) {
  8. echo '<div class="penis"><br><br>Ключ верный, вывожу результат!<br></div>';
  9.  
  10. $bases = [
  11. //Имена баз(Указываются на выводе)
  12. 1=>"ReallyWorld [2019]",
  13. 2=>"Forine",
  14. 3=>"LiteCloud [2018]",
  15. 4=>"FreeBase",
  16. 5=>"Nexting [2019]",
  17. 6=>"ShadowCraftMail",
  18. 7=>"MagicStore",
  19. 8=>"NoName",
  20. 9=>"ForceMC",
  21. 10=>"Private",
  22. 11=>"DarkMineMix[2019]",
  23. 12=>"SimpleMinecraft",
  24. 13=>"ReallyWorld [Hash]",
  25. 14=>"CombatCraft [Hash]",
  26. 15=>"DarkMineMIX",
  27. 16=>"SunRise [2019]"
  28.  
  29.  
  30.  
  31. ];
  32.  
  33.  
  34. $result = array();
  35.  
  36. //фиксит регистр
  37. $login = htmlspecialchars(mb_strtolower($_POST['login'], 'UTF-8'));
  38.  
  39. //Чекает базы
  40. $arr1 = json_decode(file_get_contents('checker/Really.txt'), true);
  41. $arr2 = json_decode(file_get_contents('checker/Forine.txt'), true);
  42. $arr3 = json_decode(file_get_contents('checker/LiteCloud2018.txt'), true);
  43. $arr4 = json_decode(file_get_contents('checker/FreeBase.txt'), true);
  44. $arr5 = json_decode(file_get_contents('checker/Nexting2019.txt'), true);
  45. $arr6 = json_decode(file_get_contents('checker/ShadowCraftMail.txt'), true);
  46. $arr7 = json_decode(file_get_contents('checker/MagicStore.txt'), true);
  47. $arr8 = json_decode(file_get_contents('checker/NoName.txt'), true);
  48. // $arr9 = json_decode(file_get_contents('checker/ReallyWorld.txt'), true);
  49. $arr9 = json_decode(file_get_contents('checker/ForseMC.txt'), true);
  50. $arr10 = json_decode(file_get_contents('checker/PrivateBase.txt'), true);
  51. $arr11 = json_decode(file_get_contents('checker/DarkMineMIX2019.txt'), true);
  52. $arr12 = json_decode(file_get_contents('checker/SimleMinecraft.txt'), true);
  53. $arr13 = json_decode(file_get_contents('checker/ReallyWorld.txt'), true);
  54. $arr14 = json_decode(file_get_contents('checker/CombatCraft.txt'), true);
  55. $arr15 = json_decode(file_get_contents('checker/DarkMineMIX.txt'), true);
  56. $arr16 = json_decode(file_get_contents('checker/SunRise.txt'), true);
  57.  
  58. $result[1] = $arr1[$login];
  59. $result[2] = $arr2[$login];
  60. $result[3] = $arr3[$login];
  61. $result[4] = $arr4[$login];
  62. $result[5] = $arr5[$login];
  63. $result[6] = $arr6[$login];
  64. $result[7] = $arr7[$login];
  65. $result[8] = $arr8[$login];
  66. $result[9] = $arr9[$login];
  67. $result[10] = $arr10[$login];
  68. $result[11] = $arr11[$login];
  69. $result[12] = $arr12[$login];
  70. $result[13] = $arr13[$login];
  71. $result[14] = $arr14[$login];
  72. $result[15] = $arr15[$login];
  73. $result[16] = $arr16[$login];
  74.  
  75. //Проверка + вывод
  76.  
  77. if(!empty($result)) {
  78.  
  79. foreach ($result as $key => $value) {
  80. if(!empty($value)) {
  81. echo("<div> База: " . $bases[$key] . " | Ник: " . $login . " | Пароль: " . $value . "</div>");
  82. } }
  83. }
  84.  
  85. }
  86. else {
  87. echo '<div class="penis"><br><br>Ключ не найден!</div>';
  88. }
  89.  
  90. ?> -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement