Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. <?php
  2. set_time_limit(0);
  3. error_reporting(0);
  4. date_default_timezone_set('Asia/Jakarta');
  5.  
  6.  
  7. /* START COLOR */
  8. $res="\033[0m";
  9. $hitam="\033[0;30m";
  10. $abu2="\033[1;30m";
  11. $putih="\033[0;37m";
  12. $putih2="\033[1;37m";
  13. $red="\033[0;31m";
  14. $red2="\033[1;31m";
  15. $green="\033[0;32m";
  16. $green2="\033[1;32m";
  17. $yellow="\033[0;33m";
  18. $yellow2="\033[1;33m";
  19. $blue="\033[0;34m";
  20. $blue2="\033[1;34m";
  21. $purple="\033[0;35m";
  22. $purple2="\033[1;35m";
  23. $lblue="\033[0;36m";
  24. $lblue2="\033[1;36m";
  25. /* END COLOR */
  26.  
  27. $false = "{$abu2}[{$red}x{$abu2}]{$red2}";
  28. $true = "{$abu2}[{$green}+{$abu2}]{$green2}";
  29. $pentung = "{$abu2}[{$yellow}!{$abu2}]{$yellow2}";
  30. $titik = "{$abu2}[{$res}•{$abu2}]{$green2}";
  31.  
  32.  
  33. $banner = "\r{$purple} __ _ __
  34. / /__ (_)___ _/ /______ _
  35. __ / / _ \ / / __ `/ //_/ __ `/
  36. / /_/ / __/ / / /_/ / ,< / /_/ /
  37. \____/\___/_/ /\__,_/_/|_|\__,_/
  38. /___/
  39. {$green}=========================================================
  40. {$green2}Author By {$abu2} :{$res} Kadal15
  41. {$green2}Channel Yt{$abu2} :{$res} Jejaka Tutorial\n";
  42.  
  43.  
  44.  
  45. function curl($url,$headers){
  46. $ch = curl_init();
  47. curl_setopt($ch, CURLOPT_URL, $url);
  48. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  49. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  50. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  51. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  52. $result = curl_exec($ch);
  53. curl_close($ch);
  54. return $result;
  55. }
  56.  
  57. $ua = array(
  58. "user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246"
  59. );
  60.  
  61.  
  62.  
  63. echo $banner;
  64. echo "\n\n\n$titik Memulai Claiming....!\n";
  65. while (True){
  66. $respon = curl("http://dutchybig.ovh/faucet.php?address=EC-UserId-64621&currency=DOGE&key=8b4abb71b2456b53bf39ce505088621f", $ua);
  67. $one = explode('<div class="alert alert-success">',$respon);
  68. $two = explode('<a style=', $one[1]);
  69. if ($two[0] != null){
  70. echo $true." ".$two["0"]."your account at Expresscrypto.io\n";
  71. }else{
  72. continue;
  73. }
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement