for more details. * * Copyright 2007-2010 Rejo Zenger * Copyright 2010-2017 Poweradmin Development Team * * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * Script that handles requests to add new supermaster servers * * @package Poweradmin * @copyright 2007-2010 Rejo Zenger * @copyright 2010-2017 Poweradmin Development Team * @license http://opensource.org/licenses/GPL-3.0 GPL */ require_once("inc/toolkit.inc.php"); include_once("inc/header.inc.php"); $zone_id = "-1"; if (isset($_GET['id']) && v_num($_GET['id'])) { $zone_id = $_GET['id']; } $user_is_zone_owner = do_hook('verify_user_is_owner_zoneid' , $zone_id ); if ($user_is_zone_owner == "0") { error(ERR_PERM_VIEW_ZONE); include_once("inc/footer.inc.php"); exit(); } if (zone_id_exists($zone_id) == "0") { error(ERR_ZONE_NOT_EXIST); include_once("inc/footer.inc.php"); exit(); } $key_type = ""; if (isset($_POST['key_type'])) { $key_type = $_POST['key_type']; if ($key_type != 'ksk' && $key_type != 'zsk') { error(ERR_INV_INPUT); include_once("inc/footer.inc.php"); exit; } } $bits = ""; if (isset($_POST["bits"])) { $bits = $_POST["bits"]; $valid_values = array('2048', '1024', '768', '384', '256'); if (!in_array($bits, $valid_values)) { error(ERR_INV_INPUT); include_once("inc/footer.inc.php"); exit; } } $algorithm = ""; if (isset($_POST["algorithm"])) { $algorithm = $_POST["algorithm"]; $valid_algorithm = array('rsasha1', 'rsasha256', 'rsasha512', 'gost', 'ecdsa256', 'ecdsa384'); if (!in_array($algorithm, $valid_algorithm)) { error(ERR_INV_INPUT); include_once("inc/footer.inc.php"); exit; } } $domain_name = get_zone_name_from_id($zone_id); if (isset($_POST["submit"])) { if (dnssec_add_zone_key($domain_name, $key_type, $bits, $algorithm)) { success(SUC_EXEC_PDNSSEC_ADD_ZONE_KEY); } else { error(ERR_EXEC_PDNSSEC_ADD_ZONE_KEY); } } echo "

" . _('Add key for zone '). $domain_name . "

\n"; echo "
\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo "
" . _('Key type') . "\n"; echo " \n"; echo "
" . _('Bits in length') . "\n"; echo " \n"; echo "
" . _('Algorithm') . "\n"; echo " \n"; echo "
 \n"; echo " \n"; echo "
\n"; echo "
\n"; include_once("inc/footer.inc.php");