-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.php
185 lines (152 loc) · 5.28 KB
/
index.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
<?php
require_once('log.inc.php');
// ISPConfig URL for REMOTE API
$soap_location = 'https://10.0.0.251:8080/remote/index.php';
$soap_uri = 'https://10.0.0.251:8080/remote/';
// Exception List
$exception = array('example.com','example2.com.');
$log = new log("main") ;
$log->debug("Session started by ".$_SERVER["REMOTE_ADDR"]);
if (!isset($_GET["hostname"])) {
echo "dnserr" ;
$log->debug("hostname is missing") ;
exit;
}
$log->debug("Hostname ".$_GET["hostname"]." found, log in specific log file");
$log = new log($_GET["hostname"]);
$log->clean() ; // on clean le fichier log
$log->debug("Session started by ".$_SERVER["REMOTE_ADDR"]);
if(!isset($_GET["username"]) || !isset($_GET["password"])) {
$log->debug('username or password not found in get method') ;
if (empty($_SERVER['PHP_AUTH_USER'])) {
header('WWW-Authenticate: Basic realm="My Realm"');
header('HTTP/1.0 401 Unauthorized');
$log->debug('Authentication abort');
exit;
}
}
else
{
$_SERVER['PHP_AUTH_USER'] = $_GET['username'];
$_SERVER['PHP_AUTH_PW'] = $_GET['password'];
}
$log->debug("AUTH USER ".$_SERVER['PHP_AUTH_USER']);
$log->debug("AUTH PASS ".$_SERVER['PHP_AUTH_PW']);
if (!isset($_GET['myip']))
{
$ip = $_SERVER["REMOTE_ADDR"] ;
$log->debug("IP not in URL, use REMOTE_ADDR: ".$ip);
}
else
{
$ip = $_GET['myip'];
$log->debug("IP in URL: ".$ip);
// TODO: Detect if $ip is an IPv4 or IPv6 address to adapt regex control
// http://www.ewhathow.com/2013/08/how-to-validate-or-detect-an-ipv4-or-an-ipv6-address-in-php/
// http://php.net/manual/fr/function.filter-var.php
// http://php.net/manual/fr/filter.filters.flags.php
if(preg_match("/(^10\.)|(^192\.168\.)|(^172\.(1[6-9]|2[0-9]|3[0-2])\.)/i", $ip))
{
$ip=$_SERVER["REMOTE_ADDR"] ;
$log->debug("IP in URL is a private IP, you can't use it for Internet routing. Use REMOTE_ADDR instead: ".$_SERVER["REMOTE_ADDR"]);
}
$found=false;
foreach ($exception as $domain)
{
if(preg_match("/".$domain."$/i", $_GET['hostname']))
{
$found=true;
$ip=$_SERVER["REMOTE_ADDR"] ;
$log->debug("domain name ". $domain ." based on the hostname is in the exception list, You can not use $myip with this hostname. Use REMOTE_ADDR instead: ".$_SERVER["REMOTE_ADDR"]);
}
}
if (!found) $log->debug('No exception found for this hostname: '.$_GET['hostname']);
}
if(substr($_GET['hostname'], -1, 1) != '.') {
$log->debug("HOSTNAME must finish with a dot (update format) : ".$_GET["hostname"]) ;
$_GET['hostname'] .= '.' ;
$log->debug("HOSTNAME updated to ".$_GET['hostname']) ;
}
$firstdotpos=strpos($_GET["hostname"], '.');
if ($firstdotpos == false) {
$log->debug("Invalid HOSTNAME format : ".$_GET["hostname"]);
echo "notqdn" ;
exit();
}
if ($_SERVER['REQUEST_METHOD'] != 'GET') {
$log->debug('ERROR: HTTP method ' . $_SERVER['REQUEST_METHOD'] . ' is not allowed. badagent');
echo 'badagent' ;
exit;
}
$dnszone=substr($_GET["hostname"], $firstdotpos+1);
// . '.';
$log->debug("DNS Zone: " . $dnszone);
$client = new SoapClient(null, array('location' => $soap_location,
'uri' => $soap_uri,
'trace' => 1,
'exceptions' => 1));
try {
if($session_id = $client->login($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW'])) {
$log->debug('Logged successfull. Session ID:'.$session_id);
} else {
$log->debug('Not logged. Session ID : '.$session_id) ;
echo "badauth" ;
exit;
}
// Charge la zone
$log->debug("Load DNS Zone: " . $dnszone);
$zone = $client->dns_zone_get($session_id, array('origin' => $dnszone));
if(count($zone)==0) {
$log->debug("DNS Zone not found at ".time());
echo "dnserr" ;
$affected_rows=0;
exit;
}
else
{
$log->debug("DNS Zone found");
//* Get the dns record
$log->debug("Record Content");
// TODO: if IPv4 use dns_a_get, if ipv6 use dns_aaaa_get
$dns_record = $client->dns_a_get($session_id, array('name' => $_GET["hostname"]));
// var_dump($dns_record);
$log->debug("End content");
// check if record is A IPv4 (not cname, mx, txt, ...)
$log->debug("Check record type");
if ($dns_record[0]['type']!='a'){
$log->debug("Record type is not A. You can only update a A record");
echo "dnserr";
exit;
}
$log->debug("End check record type");
if ($dns_record[0]['data']!=$ip){
$dns_record[0]['data'] = $ip;
// TODO: if IPv4 use dns_a_update, if ipv6 use dns_aaaa_update
$affected_rows = $client->dns_a_update($session_id, 0, $dns_record[0]['id'], $dns_record[0]);
$log->debug("Old serial number ".$zone[0]['serial']);
$newserial = $zone[0]['serial']+1;
$log->debug("New serial number ".$newserial);
$zone[0]['serial'] = $newserial;
$log->debug("Update zone");
$client->dns_zone_update($session_id, 0, $zone[0]['id'], $zone[0]);
$log->debug("Update zone finish");
} else {
echo "nochange";
$log->debug("No update needed!");
exit;
}
}
$log->debug("Number of records that have been changed in the database: ".$affected_rows);
if($client->logout($session_id)) {
$log->debug('Logged out');
}
echo 'good';
$log->debug("End script by ".$ip." at ".date('Y-m-d H:i:s')) ;
exit;
} catch (SoapFault $e) {
echo $client->__getLastResponse();
$log->debug($client->__getLastResponse());
$log->debug("serious error") ;
die('SOAP Error: '.$e->getMessage());
}
?>