⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 conf_keys.cgi

📁 BIND 9 dynamic DNS webmin module. This module supports both static and dynamic zones, and IPv4 and I
💻 CGI
字号:
#! /usr/bin/perl##    B9DDNS - BIND 9 dynamic DNS webmin module.#    Copyright (C) 2003 John Horne. <john.horne@plymouth.ac.uk>##    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 2 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, write to the Free Software#    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.### Display security key options.#use strict;no strict 'vars';require './b9ddns-lib.pl';my $found = my $i = 0;my $conf = my $key = my $alg = '';my @keys = my @algs = ();%access = &get_module_acl();unless ($access{'defaults'}) {	&terror('keys_ecannot');}$conf = &get_config();@keys = ( (sort { $a->{'value'} cmp $b->{'value'} } &find('key', $conf)), { } );&header($text{'keys_title'}, '');print '<hr>';print '<form action=save_keys.cgi>';print '<table border>';print "<tr $tb><td><b>", $text{'keys_id'}, '</b></td>',      '<td><b>', $text{'keys_alg'}, '</b></td>',      '<td><b>', $text{'keys_secret'}, '</b></td></tr>';@algs = ( 'hmac-md5' );for ($i = 0; $i < @keys; $i++) {	$found = 0;	$key = $keys[$i];	print "<tr $cb>\n";	printf '<td><input name=id_%d size=15 value="%s"></td>',		$i, $key->{'value'};	$alg = lc(&find_value('algorithm', $key->{'members'}));	print "<td><select name=alg_$i>\n";	foreach my $a (@algs) {		printf "<option %s>%s\n", ($alg eq $a) ? 'selected' : '', $a;		$found++ if ($alg eq $a);	}	print '<option selected>', $alg if (! $found && $alg);	print '</select></td>';	printf "<td><input name=secret_%d size=64 value='%s'></td></tr>\n",		$i, &find_value('secret', $key->{'members'});	print "<tr $tb><td colspan=3 height=4></td></tr>\n" unless ($i == $#keys);}print '</table>';print '<input type=submit value="', $text{'save'}, '"></form>';print "<hr>\n";&footer('', $text{'index_return'});exit;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -