· 6 years ago · Oct 22, 2019, 03:17 PM
1<?php
2#AUTO CLAIM VOC GOJEK + tf 1rp
3#MASUKIN AKUN YANG UDAH VERIF
4$tokentf = '';
5$pin = '';
6#Created By Alip Dzikri
7#####################################
8
9$secret = '83415d06-ec4e-11e6-a41b-6c40088ab51e';
10$headers = array();
11$headers[] = 'Content-Type: application/json';
12$headers[] = 'X-AppVersion: 3.27.0';
13$headers[] = "X-Uniqueid: ac94e5d0e7f3f".rand(111,999);
14$headers[] = 'X-Location: -6.405821,106.064193';
15
16echo "[+] enter password : ";
17$pass = trim(fgets(STDIN));
18if($pass == "alip"){
19 echo "[+] NOMOR : ";
20 $number = trim(fgets(STDIN));
21 $numbers = $number[0].$number[1];
22 $numberx = $number[5];
23 if($numbers == "08") {
24 $number = str_replace("08","628",$number);
25 } elseif ($numberx == " ") {
26 $number = preg_replace("/[^0-9]/", "",$number);
27 $number = "1".$number;
28 }
29 $nama = nama();
30 $email = strtolower(str_replace(" ", "", $nama) . mt_rand(100,999) . "@gmail.com");
31 $data1 = '{"name":"' . $nama . '","email":"' . $email . '","phone":"+' . $number . '","signed_up_country":"ID"}';
32 $reg = curl('https://api.gojekapi.com/v5/customers', $data1, $headers);
33 $regs = json_decode($reg[0]);
34 // Verif OTP
35 if($regs->success == true) {
36 echo "[+] OTP: ";
37 $otp = trim(fgets(STDIN));
38 $data2 = '{"client_name":"gojek:cons:android","data":{"otp":"' . $otp . '","otp_token":"' . $regs->data->otp_token . '"},"client_secret":"' . $secret . '"}';
39 $verif = curl('https://api.gojekapi.com/v5/customers/phone/verify', $data2, $headers);
40 $verifs = json_decode($verif[0]);
41 if($verifs->success == true) {
42 // Claim Voucher
43 $token = $verifs->data->access_token;
44 $headers[] = 'Authorization: Bearer '.$token;
45 $live = "token-accounts.txt";
46 $fopen1 = fopen($live, "a+");
47 $fwrite1 = fwrite($fopen1, "TOKEN => ".$token." \n NOMOR => ".$number." \n");
48 fclose($fopen1);
49 echo "[+] File Token saved in ".$live." \n";
50 echo "[+]Process Redeem GOFOODBOBA07 \n";
51 $data3 = '{"promo_code":"GOFOODBOBA07"}';
52 $claim = curl('https://api.gojekapi.com/go-promotions/v1/promotions/enrollments', $data3, $headers);
53 $claims = json_decode($claim[0]);
54 echo $claims->data->message;
55 echo "\n";
56 sleep(3);
57 echo "[+]Process Redeem COBAINGOJEK \n";
58 $data4 = '{"promo_code":"COBAINGOJEK"}';
59 $claim1 = curl('https://api.gojekapi.com/go-promotions/v1/promotions/enrollments', $data4, $headers);
60 $claims1 = json_decode($claim1[0]);
61 echo $claims1->data->message;
62 sleep(3);
63 echo "[+]Process TF 1rp \n";
64 $getqrid = curl('https://api.gojekapi.com/wallet/qr-code?phone_number=%2B'.$number.'', null, $headers);
65 $jsqrid = json_decode($getqrid[0]);
66 $qrid = $jsqrid->data->qr_id;
67$headertf = array();
68$headertf[] = 'Content-Type: application/json';
69$headertf[] = 'X-AppVersion: 3.27.0';
70$headertf[] = "X-Uniqueid: ac94e5d0e7f3f".rand(111,999);
71$headertf[] = 'X-Location: -6.405821,106.64193';
72$headertf[] ='Authorization: Bearer '.$tokentf;
73$headertf[] = 'pin:'.$pin.'';
74
75$tf = curl('https://api.gojekapi.com/v2/fund/transfer', '{"amount":"1","description":"?Memek ","qr_id":"'.$qrid.'"}', $headertf);
76$jstf = json_decode($tf[0]);
77if($jstf->status == "1"){
78 echo "[+]SUKSES TF";
79 } else {
80 print_r($jstf);
81 }
82
83 }
84 }
85 } else{
86 die('SALAH PASS');
87
88
89 }
90 function nama()
91 {
92 $ch = curl_init();
93 curl_setopt($ch, CURLOPT_URL, "http://ninjaname.horseridersupply.com/indonesian_name.php");
94 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
95 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
96 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
97 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
98 $ex = curl_exec($ch);
99 // $rand = json_decode($rnd_get, true);
100 preg_match_all('~(• (.*?)<br/>• )~', $ex, $name);
101 return $name[2][mt_rand(0, 14) ];
102 }
103
104function curl($url, $fields = null, $headers = null)
105 {
106 $ch = curl_init();
107 curl_setopt($ch, CURLOPT_URL, $url);
108 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
109 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
110 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
111 if ($fields !== null) {
112 curl_setopt($ch, CURLOPT_POST, 1);
113 curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
114 }
115 if ($headers !== null) {
116 curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
117 }
118 $result = curl_exec($ch);
119 $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
120 curl_close($ch);
121
122 return array(
123 $result,
124 $httpcode
125 );
126 }