Advertisement
janter13

edit

Aug 27th, 2014
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.50 KB | None | 0 0
  1. <?php
  2. include 'funct.php';
  3. date_default_timezone_set("Asia/Jakarta");
  4. set_time_limit(0);
  5.  
  6. $url = array("http url 1","http url 2","http url 3","http url 4","http url 5");
  7. $lru = $url[rand(0,1)];
  8.  
  9. if(date("Y-m-d H:i")>="2015-08-06 06:00"){
  10. echo "<h1>CLOSED!!</h1>";
  11. die;
  12. }
  13. if(!isset($_POST['logins']))  {
  14. ?>
  15. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml-strict.dtd">
  16. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt-BR" lang="pt-BR">
  17. <head>
  18. <link href="//abs.twimg.com/favicons/favicon.ico" rel="shortcut icon" type="image/x-icon">
  19. <title>MassAVA No Logger</title>
  20. <script type="text/javascript">
  21. function contaoslogins() {
  22. document.getElementById("conta").innerHTML = document.getElementById("logins").value.split("\n").length;
  23. }
  24. </script>
  25. </head>
  26.  
  27. <style>
  28. #kotak
  29.          {
  30.             width: 300px;
  31.             height: 20px;
  32.             font-family: Rockwell, 'Trebuchet MS', serif;
  33.          }
  34.  
  35. #btn
  36.          {
  37.             border-style: double;
  38.             -moz-border-radius: 4px;
  39.             -webkit-border-radius: 4px;
  40.             border-radius: 9px;
  41.             font-family: times new roman;
  42.             width: 200px;
  43.             font-size:15px;
  44. font-color:FFF;
  45. background: transparent;
  46. }
  47.  
  48.  
  49.          #login
  50.          {
  51.             width: 220px;
  52.             height: 20px;
  53.             font-family: Rockwell, 'Trebuchet MS', serif;
  54.          }
  55.  
  56.      
  57.       .work
  58.          {
  59.             font-weight: bold;
  60.             color: green;
  61.          }
  62.       .notwork
  63.          {
  64.             font-weight: bold;
  65.             color: red;
  66.          }
  67.  
  68. textarea{
  69. width: 330px;
  70. height: 350px;
  71. padding:5px;
  72. margin:5px;
  73. - border-top-left-radius: 15px;
  74. - border-top-right-radius: 15px;
  75. - border-bottom-right-radius: 0px;
  76. - border-bottom-left-radius: 15px;
  77. }
  78. </style>
  79. <script type="text/javascript">
  80.       function countFakes()
  81.          {
  82.             document.getElementById("count").innerHTML =
  83.                document.getElementById("logins").value.split("\n").length;
  84.          }
  85.    </script>
  86. <body>
  87. <center>
  88. <br/><br/>
  89. <form method="POST" action="">
  90. <div class="input-prepend">
  91.                 <input name="perfil" id="kotak" class="span4" type="text" style="margin-top:13px;" placeholder="<?php echo $lru; ?>">
  92.               </div><br/>
  93. <textarea name="logins" id="logins" placeholder="Username:Password" rows="10" cols="10" onKeyDown="countFakes()" onChange="countFakes()"></textarea><br />
  94. <font style="font-weight: bold; font-family: Candara; color: #8A2BE2;">Jumlah : </font><font id="count" style="font-weight: bold; font-family: Candara; color: #333333;">0</font><font style="color: #000000;">&nbsp;Twitter Ids</font><br />
  95. <input type="submit" value="CHANGE" id="btn" ><br/><br/></br/>
  96. </form>
  97. </center>
  98. </body>
  99. </html>
  100. <?php
  101. } else {
  102.  
  103. echo '<center><b><font style="font-weight: bold; face:Agency FB; color: #0097fc;">MassAVA No Loggger</font></b><br/><br/>';
  104. $login = $_POST['logins'];
  105. $follow = $_POST['perfil'];
  106. $logins = explode("\n", $login);
  107. foreach ($logins as $perfil) {
  108. $data = explode(":", $perfil);
  109. $user = trim($data[0]);
  110. $password = trim($data[1]);
  111. $cooferenz = login($user,$password,$_POST['perfil']);
  112. if(!preg_match("/auth_token/i", $cooferenz)) {
  113. echo "<font color=\"red\">".$user.":".$password." - <b> Failed </b></font><br/>";
  114. flush();
  115. ob_flush();
  116. sleep(0);
  117. } else {
  118. echo "<font color=\"green\">".$user.":".$password." - <b> Success </b></font><br/>";
  119. flush();
  120. ob_flush();
  121. sleep(0);
  122. }
  123. }
  124. }
  125. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement