· 6 years ago · Nov 01, 2019, 08:48 PM
1<?php
2#AUTO CLAIM VOC GOJEK + tf 1rp
3#MASUKIN AKUN YANG UDAH VERIF
4#Created By Alip Dzikri X Apri AMsyah
5#recoded oleh joe untuk nak Lodonk
6#####################################
7
8$secret = 'token verif gojek lo';
9$headers = array();
10$headers[] = 'Content-Type: application/json';
11$headers[] = 'X-AppVersion: 3.27.0';
12$headers[] = "X-Uniqueid: ac94e5d0e7f3f".rand(111,999);
13$headers[] = 'X-Location: -6.405821,106.064193';
14
15
16 echo "[+] Nomer Yang Ingin Di Claim : ";
17 $number = trim(fgets(STDIN));
18 $numbers = $number[0].$number[1];
19 $numberx = $number[5];
20 if($numbers == "08") {
21 $number = str_replace("08","628",$number);
22 } elseif ($numberx == " ") {
23 $number = preg_replace("/[^0-9]/", "",$number);
24 $number = "1".$number;
25 }
26 $nama = nama();
27 $email = strtolower(str_replace(" ", "", $nama) . mt_rand(100,999) . "@gmail.com");
28 $data1 = '{"name":"' . $nama . '","email":"' . $email . '","phone":"+' . $number . '","signed_up_country":"ID"}';
29 $reg = curl('https://api.gojekapi.com/v5/customers', $data1, $headers);
30 $regs = json_decode($reg[0]);
31 // Verif OTP
32 if($regs->success == true) {
33 echo "[+] OTP: ";
34 $otp = trim(fgets(STDIN));
35 $data2 = '{"client_name":"gojek:cons:android","data":{"otp":"' . $otp . '","otp_token":"' . $regs->data->otp_token . '"},"client_secret":"' . $secret . '"}';
36 $verif = curl('https://api.gojekapi.com/v5/customers/phone/verify', $data2, $headers);
37 $verifs = json_decode($verif[0]);
38 if($verifs->success == true) {
39 // Claim Voucher
40 $token = $verifs->data->access_token;
41 $headers[] = 'Authorization: Bearer '.$token;
42 $live = "token-accounts.txt";
43 $fopen1 = fopen($live, "a+");
44 $fwrite1 = fwrite($fopen1, "TOKEN => ".$token." \n NOMOR => ".$number." \n");
45 fclose($fopen1);
46 echo "[+] File Token saved in ".$live." \n";
47 echo "[+]Process Redeem GOFOODBOBA07 \n";
48 echo "Cok Delay dulu gw takut banned ama nadiem \n";
49 echo "nangid tar dibanned nadiem \n";
50 sleep(15);
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 sleep(10);
56 echo "[+]Process TF 1rp \n";
57 $getqrid = curl('https://api.gojekapi.com/wallet/qr-code?phone_number=%2B'.$number.'', null, $headers);
58 $jsqrid = json_decode($getqrid[0]);
59 $qrid = $jsqrid->data->qr_id;
60$headertf = array();
61$pin = '150400';
62$token1 ='token gojek verif lu';
63$headertf[] = 'Content-Type: application/json';
64$headertf[] = 'X-AppVersion: 3.27.0';
65$headertf[] = "X-Uniqueid: ac94e5d0e7f3f".rand(111,999);
66$headertf[] = 'X-Location: -6.705821,103.64193';
67$headertf[] ='Authorization: Bearer '.$token1;
68$headertf[] = 'pin:'.$pin.'';
69
70$tf = curl('https://api.gojekapi.com/v2/fund/transfer', '{"amount":"1","description":"DowerGanteng ","qr_id":"'.$qrid.'"}', $headertf);
71$jstf = json_decode($tf[0]);
72if($jstf->status == "1"){
73 echo "[+]SUKSES TF MANTAP ANJING MAKAN GRATIS DARI NADIEM";
74 } else {
75 print_r($jstf);
76 }
77
78 }
79
80
81 }
82 function nama()
83 {
84 $ch = curl_init();
85 curl_setopt($ch, CURLOPT_URL, "http://ninjaname.horseridersupply.com/indonesian_name.php");
86 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
87 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
88 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
89 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
90 $ex = curl_exec($ch);
91 // $rand = json_decode($rnd_get, true);
92 preg_match_all('~(• (.*?)<br/>• )~', $ex, $name);
93 return $name[2][mt_rand(0, 14) ];
94 }
95
96function curl($url, $fields = null, $headers = null)
97 {
98 $ch = curl_init();
99 curl_setopt($ch, CURLOPT_URL, $url);
100 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
101 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
102 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
103 if ($fields !== null) {
104 curl_setopt($ch, CURLOPT_POST, 1);
105 curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
106 }
107 if ($headers !== null) {
108 curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
109 }
110 $result = curl_exec($ch);
111 $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
112 curl_close($ch);
113
114 return array(
115 $result,
116 $httpcode
117 );
118 }