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