Advertisement
zaksya

Bot Auto Claim POTCOIN

Aug 13th, 2018
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.10 KB | None | 0 0
  1. <?php
  2. error_reporting(0);
  3. function curl($url,$data){
  4.     $ch = curl_init();
  5.     curl_setopt_array($ch, array(
  6.         CURLOPT_URL =>$url,
  7.         CURLOPT_RETURNTRANSFER => 1,
  8.         CURLOPT_FOLLOWLOCATION => 0,
  9.         CURLOPT_REFERER => $url,
  10.         CURLOPT_USERAGENT => "Mozilla/4.0 (compatible; MSIE 7.0;     Windows NT 6.1; Win64;  x64; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; NeoDownloader Embedded Web Browser from: http://bsalsa.com/; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729)",
  11.         CURLOPT_POSTFIELDS => 1,
  12.         CURLOPT_POST => $data,
  13.         CURLOPT_COOKIEJAR => "cookie.txt",
  14.         CURLOPT_COOKIEFILE => "cookie.txt"
  15.     ));
  16.         $respon['data'] = curl_exec($ch);
  17.         $respon['code'] = curl_getinfo($ch);
  18.         return $respon;
  19.         curl_close($ch);
  20. }
  21. echo "
  22. POT COIN BOTS :D
  23. Delay 6 Menit Yaaa :D
  24. ";
  25. $delay = 360;
  26. $sekarang = date("h:i:s");
  27. echo "Input Pot Address : ";
  28. $address = trim(fgets(STDIN));
  29. $uri = curl("http://faucetnarniacoin.online/verify.php","address={$address}");
  30. while (true) {
  31. if($uri){
  32.     echo "[{$sekarang}] 2400 satoshi was sent | ";
  33.     echo "[BOT DELAY] \n";
  34. }
  35. sleep($delay);
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement