-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathkeyauth.php
492 lines (399 loc) · 14.1 KB
/
keyauth.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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
<?php
/*
* KEYAUTH.CC PHP EXAMPLE
*
* Edit credentials.php file and enter name & ownerid from https://keyauth.cc/app
*
* READ HERE TO LEARN ABOUT KEYAUTH FUNCTIONS https://github.com/KeyAuth/KeyAuth-PHP-Example#keyauthapp-instance-definition
*
*/
namespace KeyAuth;
if (session_status() !== PHP_SESSION_ACTIVE) {
session_start();
}
/*error_reporting(E_ALL);
ini_set('display_errors', 1); You can use this code for better error handling - recommended for local testing only*/
class api
{
public $name;
public $ownerid;
public function __construct(string $name, string $ownerid)
{
$this->name = $name;
$this->ownerid = $ownerid;
}
function init()
{
if ($this->name == "" || strlen($this->ownerid) != 10) {
die("Go to <a href=\"https://keyauth.cc/app/\" target=\"blank\">https://keyauth.cc/app/</a> and click the <b>PHP</b> button in the App credentials code. Copy that & paste in <code style=\"background-color: #eee;border-radius: 3px;font-family: courier, monospace;padding: 0 3px;\">credentials.php</code>");
}
$data = array(
"type" => "init",
"name" => $this->name,
"ownerid" => $this->ownerid
);
$response = $this->req($data);
if ($response == "KeyAuth_Invalid") {
die("Go to <a href=\"https://keyauth.cc/app/\" target=\"blank\">https://keyauth.cc/app/</a> and click the <b>PHP</b> button in the App credentials code. Copy that & paste in <code style=\"background-color: #eee;border-radius: 3px;font-family: courier, monospace;padding: 0 3px;\">credentials.php</code>");
}
$json = json_decode($response);
if ($json->message == "This program hash does not match, make sure you're using latest version") {
die("You must disable hash check at <a href=\"https://keyauth.cc/app/?page=app-settings\" target=\"blank\">https://keyauth.cc/app/?page=app-settings</a>");
}
if (!$json->success)
die($json->message);
else if ($json->success) {
$_SESSION['sessionid'] = $json->sessionid;
}
}
function logout(){
$data = array(
"type" => "logout",
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
$response = $this->req($data);
}
function disable2fa($code) {
$data = array(
"type" => "2fadisable",
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid,
"code" => $code
);
$response = $this->req($data);
$json = json_decode($response);
if ($json->success){
echo "<script>alert('2FA has been successfully disabled!');</script>";
} else {
// Wait 3 seconds and then exit with error code 1
sleep(3);
exit(1);
}
}
function enable2fa($code = null) {
$data = array(
"type" => "2faenable",
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid,
"code" => $code
);
$response = $this->req($data);
$json = json_decode($response);
if ($json === null) {
die("JSON decode error: " . json_last_error_msg());
}
// Update session id if provided by the API
if (isset($json->sessionid)) {
$_SESSION['sessionid'] = $json->sessionid;
}
if ($json->success) {
if (empty($code)) {
if (isset($json->{'2fa'}) && isset($json->{'2fa'}->secret_code)) {
$secretCode = trim($json->{'2fa'}->secret_code);
echo "<script>
if (navigator.clipboard) {
navigator.clipboard.writeText('" . addslashes($secretCode) . "')
.then(function() {
alert('Your 2FA Secret Code has been copied to your clipboard! \\n\\n: " . addslashes($secretCode) . "');
})
.catch(function(err) {
alert('Your 2FA Secret Code: " . addslashes($secretCode) . "');
});
} else {
alert('Your 2FA Secret Code: " . addslashes($secretCode) . "');
}
</script>";
} else {
echo "<script>alert('2FA enabled successfully but no secret code was returned.');</script>";
}
} else {
echo "<script>alert('2FA has been successfully enabled!');</script>";
}
} else {
echo "<script>alert('Error: " . addslashes($json->message) . "');</script>";
sleep(3);
exit(1);
}
}
function login($username, $password, $code = null)
{
$data = array(
"type" => "login",
"username" => $username,
"pass" => $password,
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
if (!is_null($code)) {
$data["code"] = $code;
}
$response = $this->req($data);
$json = json_decode($response);
if (!$json->success) {
unset($_SESSION['sessionid']);
$this->error($json->message);
} else if ($json->success)
$_SESSION["user_data"] = (array)$json->info;
return $json->success;
}
function register($username, $password, $key)
{
$data = array(
"type" => "register",
"username" => $username,
"pass" => $password,
"key" => $key,
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
$response = $this->req($data);
$json = json_decode($response);
if (!$json->success) {
unset($_SESSION['sessionid']);
$this->error($json->message);
} else if ($json->success)
$_SESSION["user_data"] = (array)$json->info;
return $json->success;
}
function license($key, $code = null)
{
$data = array(
"type" => "license",
"key" => $key,
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
if (!is_null($code)) {
$data["code"] = $code;
}
$response = $this->req($data);
$json = json_decode($response);
if (!$json->success) {
unset($_SESSION['sessionid']);
$this->error($json->message);
} else if ($json->success)
$_SESSION["user_data"] = (array)$json->info;
return $json->success;
}
function upgrade($username, $key)
{
$data = array(
"type" => "upgrade",
"username" => $username,
"key" => $key,
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
$response = $this->req($data);
$json = json_decode($response);
if (!$json->success) {
unset($_SESSION['sessionid']);
$this->error($json->message);
}
// don't allow them to dashboard yet, upgrade doesn't require password so they need to login after register
return $json->success;
}
function var($varid)
{
$data = array(
"type" => "var",
"varid" => $varid,
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
$response = $this->req($data);
$json = json_decode($response);
if (!$json->success) {
unset($_SESSION['sessionid']);
$this->error($json->message);
} else if ($json->success)
return $json->message;
}
function log($message)
{
$User = gethostname();
$data = array(
"type" => "log",
"pcuser" => $User,
"message" => $message,
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
$this->req($data);
}
function setvar($varname, $data)
{
$data = array(
"type" => "setvar",
"var" => $varname,
"data" => $data,
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
$this->req($data);
}
function getvar($varid)
{
$data = array(
"type" => "getvar",
"var" => $varid,
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
$response = $this->req($data);
$json = json_decode($response);
if (!$json->success) {
return null;
} else if ($json->success)
return $json->response;
}
function webhook($webid, $param, $body = "", $conttype = "")
{
$data = array(
"type" => "webhook",
"webid" => $webid,
"params" => $param,
"body" => $body,
"conttype" => $conttype,
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
$response = $this->req($data);
$json = json_decode($response);
if (!$json->success) {
return null;
} else if ($json->success)
return $json->response;
}
function FetchOnline() {
$data = array(
"type" => "fetchOnline",
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
$response = $this->req($data);
$json = json_decode($response);
if (!$json->success) {
return null;
} else if ($json->success)
return $json->response;
}
function checkBlack() {
$data = array(
"type" => "checkBlack",
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
$response = $this->req($data);
$json = json_decode($response);
if (!$json->success) {
return null;
} else if ($json->success)
return $json->response;
}
function Ban($reason){
$data = array(
"type" => "ban",
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid,
"reason" => $reason
);
$response = $this->req($data);
$json = json_decode($response);
if ($json->success) {
return true;
} else {
$this->error($json->message);
return false;
}
}
function ChatGet($channel) {
$data = array(
"type" => "chatget",
"channel" => $channel,
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
$response = $this->req($data);
$json = json_decode($response);
if (!$json->success) {
return null;
} else if ($json->success)
return $json->messages;
}
function ChatSend($message, $channel) {
$data = array(
"type" => "chatsend",
"message" => $message,
"channel" => $channel,
"sessionid" => $_SESSION['sessionid'],
"name" => $this->name,
"ownerid" => $this->ownerid
);
$response = $this->req($data);
$json = json_decode($response);
if (!$json->success) {
return null;
} else if ($json->success)
return $json->message;
}
private function req($data)
{
$curl = curl_init("https://keyauth.win/api/1.2/");
curl_setopt($curl, CURLOPT_USERAGENT, "KeyAuth");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
$response = curl_exec($curl);
curl_close($curl);
return $response;
}
public function error($msg)
{
echo
<script type=\'text/javascript\'>
const notyf = new Notyf();
notyf
.error({
message: \'' . addslashes($msg) . '\',
duration: 3500,
dismissible: true
});
</script>
';
}
public function success($msg)
{
echo
<script type=\'text/javascript\'>
const notyf = new Notyf();
notyf
.success({
message: \'' . addslashes($msg) . '\',
duration: 3500,
dismissible: true
});
</script>
';
}
}
?>