forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
108 lines (98 loc) · 2.06 KB
/
index.php
File metadata and controls
108 lines (98 loc) · 2.06 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
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
<?php
use function Hestiacp\quoteshellarg\quoteshellarg;
$TAB = "DNS";
// Main include
include $_SERVER["DOCUMENT_ROOT"] . "/inc/main.php";
// Data & Render page
if (empty($_GET["domain"])) {
exec(HESTIA_CMD . "v-list-dns-domains " . $user . " 'json'", $output, $return_var);
$data = json_decode(implode("", $output), true);
if ($_SESSION["userSortOrder"] == "name") {
ksort($data);
} else {
$data = array_reverse($data, true);
}
unset($output);
render_page($user, $TAB, "list_dns");
} elseif (!empty($_GET["action"])) {
exec(
HESTIA_CMD .
"v-list-dnssec-public-key " .
$user .
" " .
quoteshellarg($_GET["domain"]) .
" 'json'",
$output,
$return_var,
);
$data = json_decode(implode("", $output), true);
$domain = $_GET["domain"];
switch ($data[$domain]["FLAG"]) {
case 257:
$flag = "KSK (257)";
break;
case 256:
$flag = "ZSK (256)";
break;
}
switch ($data[$domain]["ALGORITHM"]) {
case 3:
$algorithm = "3 - DSA";
break;
case 5:
$algorithm = "5 - RSA/SHA1";
break;
case 6:
$algorithm = "6 - DSA-NSEC3-SHA1";
break;
case 7:
$algorithm = "7 - RSA/SHA1-NSEC3-SHA1";
break;
case 8:
$algorithm = "8 - RSA/SHA256";
break;
case 10:
$algorithm = "10 - RSA/SHA512";
break;
case 12:
$algorithm = "12 - ECC-GOST";
break;
case 13:
$algorithm = "13 - ECDSAP256/SHA256";
break;
case 14:
$algorithm = "14 - ECDSAP384/SHA384";
break;
case 15:
$algorithm = "15 - ED25519/SHA512";
break;
case 16:
$algorithm = "16 - ED448/SHA912";
break;
default:
$algorithm = "Unknown";
}
unset($output);
render_page($user, $TAB, "list_dns_public");
} else {
exec(
HESTIA_CMD .
"v-list-dns-records " .
$user .
" " .
quoteshellarg($_GET["domain"]) .
" 'json'",
$output,
$return_var,
);
$data = json_decode(implode("", $output), true);
if ($_SESSION["userSortOrder"] == "name") {
ksort($data);
} else {
$data = array_reverse($data, true);
}
unset($output);
render_page($user, $TAB, "list_dns_rec");
}
// Back uri
$_SESSION["back"] = $_SERVER["REQUEST_URI"];