-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbot.php
More file actions
88 lines (69 loc) · 2.13 KB
/
Copy pathbot.php
File metadata and controls
88 lines (69 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/*
----------------------------------------------
Author : mbxid
Website : bluestack4.site
----------------------------------------------
*/
include("cfg.php");
date_default_timezone_set("Asia/Jakarta");
system("clear");
/* START COLOR */
$res="\033[7m";
$hitam="\033[0;30m";
$abu2="\033[1;30m";
$putih="\033[0;37m";
$putih2="\033[1;37m";
$red="\033[0;31m";
$red2="\033[1;31m";
$green="\033[0;32m";
$green2="\033[1;32m";
$yellow="\033[0;33m";
$yellow2="\033[1;33m";
$blue="\033[0;34m";
$blue2="\033[1;34m";
$purple="\033[0;35m";
$purple2="\033[1;35m";
$lblue="\033[0;36m";
$lblue2="\033[1;36m";
echo date
(" y,m,d");
while(true){
$header = array();
$header[]="user-agent: $useragent";
$header[]="cookie: $cookie";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://bitcoinptc.top/index.php?view=account");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$account = curl_exec($ch);
$bal = explode('<td width="200"><strong>Balance</strong></td>', $account);
$baln = explode('<td>฿ <strong>', $bal[1]);
$balance = explode('</strong></td>', $baln[1]);
echo" $green2 ======> Your BITCOIN = $blue $balance[0] \n";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://bitcoinptc.top/index.php?view=ads");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$ads = curl_exec($ch);
$t = explode('<div class="pointer ad-block " id="', $ads);
$token = explode('" style="margin-bottom:5px', $t[1]);
$time = rand(5,10);
for ($x=$time; $x>-1; $x--){
echo"\r \r";
echo"\r $lblue2 ======> Wait $blue< $x > [Seconds] \r";
sleep(1);
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://bitcoinptc.top/index.php?view=ads&t=$token[0]");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$result = curl_exec($ch);
}
?>