Advertisement
Guest User

Worm Man

a guest
Jul 3rd, 2015
432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.48 KB | None | 0 0
  1. <?php
  2.  
  3. ini_set('memory_limit', '6000M');
  4. set_time_limit(0);
  5. echo "Wordlist Yaradıcı By WM.\n";
  6. echo "Anti-Armenia.org\n";
  7. /* Wordlist Maker by WM. Respect! -> Anti-Armenia.org  */
  8. /* İstifadə qaydası: php -f script_name.php adminka1 , adminka2 , adminka3 ...
  9. İstədiyiniz açar sözləri yazırsız və script rəqəmləri kombine edərək ona uyğun admin parolu yaradır. */
  10. //Example
  11. // root@root-HP-ProDesk-400-G1-MT:~/Desktop$ php -f script_name.php ashot arturyan
  12. // Və script belə wordlist yaradır
  13. /*
  14. ashot1
  15. ashot12
  16. ashot123
  17. ashot1234
  18. ashot12345
  19. ashot123456
  20. ashot1234567
  21. ashot12345678
  22. ..
  23.  
  24. ashot38
  25. ashot39
  26. ashot40
  27. ashot41
  28. ashot42
  29. ashot43
  30. ashot44
  31. ashot45
  32. ashot46
  33. ashot47
  34. ashot48
  35. ashot49
  36. ashot50
  37. ashot51
  38.  
  39. ..
  40. ashot092
  41. ashot093
  42. ashot094
  43. ashot095
  44. ashot096
  45. ashot097
  46. ashot098
  47. ashot099
  48. ashot100
  49. ashot101
  50.  
  51. və eyni şeylər digər admin adları üçün.
  52. 5 rəqəmə qədər ədədlərdən istifadə olunur , birinci hissə istisnadır */
  53.  
  54. $keys=$argv;
  55. if(!isset($keys)) {
  56. die("Enter admin names!\n");
  57. }
  58.  
  59.  
  60. $list = fopen("wordlist.txt", "w") or die("Fayl açmaq olmur!");
  61.  
  62. for ($i = 1; $i < count($keys); $i++)
  63. {
  64.  
  65.  
  66.  
  67. fwrite($list,$keys[$i]."1\n");
  68. fwrite($list,$keys[$i]."12\n");
  69. fwrite($list,$keys[$i]."123\n");
  70. fwrite($list,$keys[$i]."1234\n");
  71. fwrite($list,$keys[$i]."12345\n");
  72. fwrite($list,$keys[$i]."123456\n");
  73. fwrite($list,$keys[$i]."1234567\n");
  74. fwrite($list,$keys[$i]."12345678\n");
  75. fwrite($list,$keys[$i]."123456789\n");
  76. fwrite($list,$keys[$i]."1234567890\n");
  77. }
  78. /* 1234567890 noob adminlər üçün/for noob admins*/
  79. for ($i = 1; $i < count($keys); $i++)
  80. {
  81.   for ( $a = 0; $a <= 9; $a++)
  82.    {
  83.        
  84.          fwrite($list,$keys[$i].$a."\n");
  85.            
  86.       }
  87. }
  88.  
  89. /* İki rəqəmli / Two Digits */
  90.  
  91. for ($i = 1; $i < count($keys); $i++)
  92. {
  93.   for ( $a = 0; $a <= 9; $a++)
  94.    {
  95.      for ( $b = 0; $b <= 9; $b++)
  96.        {
  97.          fwrite($list,$keys[$i].$a.$b."\n");
  98.            }
  99.       }
  100. }
  101. /* Üç rəqəmli / Three Digits */
  102. for ($i = 1; $i < count($keys); $i++)
  103. {
  104.   for ( $a = 0; $a <= 9; $a++)
  105.    {
  106.      for ( $b = 0; $b <= 9; $b++)
  107.        {
  108.          for ( $c = 0; $c <= 9; $c++)
  109.              {
  110.               fwrite($list,$keys[$i].$a.$b.$c."\n");
  111.                }
  112.            
  113.            }
  114.       }
  115. }
  116. /* Dörd rəqəmli / Four Digit */
  117. for ($i = 1; $i < count($keys); $i++)
  118. {
  119.   for ( $a = 0; $a <= 9; $a++)
  120.    {
  121.      for ( $b = 0; $b <= 9; $b++)
  122.        {
  123.          for ( $c = 0; $c <= 9; $c++)
  124.              {
  125.                for ( $d = 0; $d <=9; $d++)
  126.                  {
  127.               fwrite($list,$keys[$i].$a.$b.$c.$d."\n");
  128.                  }
  129.                }
  130.            
  131.            }
  132.       }
  133. }
  134. /* Beş rəqəmli / Five Digit */
  135. for ($i = 1; $i < count($keys); $i++)
  136. {
  137.   for ( $a = 0; $a <= 9; $a++)
  138.    {
  139.      for ( $b = 0; $b <= 9; $b++)
  140.        {
  141.          for ( $c = 0; $c <= 9; $c++)
  142.              {
  143.                for ( $d = 0; $d <= 9; $d++)
  144.                  {
  145.                    for ( $e = 0; $e <= 9; $e++)
  146.                   {
  147.               fwrite($list,$keys[$i].$a.$b.$c.$d.$e."\n");
  148.                       }
  149.                    }
  150.                }
  151.            
  152.            }
  153.       }
  154. }
  155. $num = (count($keys)-1) * 111120;
  156. echo "WordList hazırdır!\n";
  157. echo $num . " söz!\n";
  158.     sleep(1);
  159.     $time = microtime(true) - $_SERVER["REQUEST_TIME_FLOAT"];
  160.     echo "Yaradılma vaxtı: {$time}";
  161.     // Process Time: 1.0061590671539
  162. // Worm Man . Anti-Amenia.org Team
  163.  
  164.  
  165. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement