%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.101 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/share/webmin/bind8/ |
Upload File : |
#!/usr/bin/perl
# save_soa.cgi
# Save changes to an SOA record
use strict;
use warnings;
no warnings 'redefine';
no warnings 'uninitialized';
our (%access, %text, %in, %config);
require './bind8-lib.pl';
&ReadParse();
&error_setup($text{'master_err2'});
my $zone = &get_zone_name_or_error($in{'zone'}, $in{'view'});
my $dom = $zone->{'name'};
&can_edit_zone($zone) ||
&error($text{'master_ecannot'});
$access{'ro'} && &error($text{'master_ero'});
$access{'params'} || &error($text{'master_esoacannot'});
# Get the SOA and file
my @recs = &read_zone_file($zone->{'file'}, $dom);
my $soa;
foreach my $r (@recs) {
$soa = $r if ($r->{'type'} eq "SOA");
}
$soa || &error($text{'master_esoagone'});
my $file = $soa->{'file'};
# check inputs
&valdnsname($in{'master'}, 0, $in{'origin'}) ||
&error(&text('master_emaster', $in{'master'}));
&valemail($in{'email'}) ||
&error(&text('master_eemail', $in{'email'}));
$in{'refresh'} =~ /^\d+$/ ||
&error(&text('master_erefresh', $in{'refresh'}));
$in{'retry'} =~ /^\d+$/ ||
&error(&text('master_eretry', $in{'retry'}));
$in{'expiry'} =~ /^\d+$/ ||
&error(&text('master_eexpiry', $in{'expiry'}));
$in{'minimum'} =~ /^\d+$/ ||
&error(&text('master_eminimum', $in{'minimum'}));
if ($in{'email'} =~ /\@/) {
$in{'email'} = &email_to_dotted($in{'email'});
}
$in{'defttl_def'} || $in{'defttl'} =~ /^\d+$/ ||
&error(&text('master_edefttl', $in{'defttl'}));
&lock_file(&make_chroot($file));
@recs = &read_zone_file($file, $in{'origin'});
my $old = $recs[$in{'num'}];
# already set serial if no acl allow it to update or update is disabled
my $serial = $old->{'values'}->[2];
if ($config{'updserial_on'}) {
# automatically handle serial numbers ?
$serial = &compute_serial($old->{'values'}->[2]);
}
else {
$in{'serial'} =~ /^\d+$/ || &error($text{'master_eserial'});
$in{'serial'} < 2**31 || &error($text{'master_eserial2'});
$serial = $in{'serial'};
}
my $vals = "$in{'master'} $in{'email'} (\n".
"\t\t\t$serial\n".
"\t\t\t$in{'refresh'}$in{'refunit'}\n".
"\t\t\t$in{'retry'}$in{'retunit'}\n".
"\t\t\t$in{'expiry'}$in{'expunit'}\n".
"\t\t\t$in{'minimum'}$in{'minunit'} )";
&modify_record($file, $old, $old->{'name'}, $old->{'ttl'},
$old->{'class'}, "SOA", $vals);
my ($defttl) = grep { $_->{'defttl'} } @recs;
if (!$defttl && !$in{'defttl_def'}) {
&create_defttl($file, $in{'defttl'}.$in{'defttlunit'});
}
elsif ($defttl && !$in{'defttl_def'}) {
&modify_defttl($file, $defttl, $in{'defttl'}.$in{'defttlunit'});
}
elsif ($defttl && $in{'defttl_def'}) {
&delete_defttl($file, $defttl);
}
&unlock_file(&make_chroot($file));
&webmin_log("soa", undef, $in{'origin'}, \%in);
&redirect("edit_master.cgi?zone=$in{'zone'}&view=$in{'view'}");