#!/usr/bin/perl # Webserver SSL form use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; require "./webmin-lib.pl"; # Globals our %text; our %miniserv; our %in; our $config_directory; our $module_name; our $strong_ssl_ciphers; our $pfs_ssl_ciphers; our $info; our $root_directory; our %config; our $letsencrypt_cmd; ui_print_header(undef, $text{'ssl_title'}, ""); ReadParse(); get_miniserv_config(\%miniserv); # Check if we even *have* SSL support $@ = undef; eval "use Net::SSLeay"; if ($@) { print text('ssl_essl', "http://www.webmin.com/ssl.html"),"<p>\n"; if (foreign_available("cpan")) { print text('ssl_cpan', "../cpan/download.cgi?source=3&cpan=Net::SSLeay&mode=2&return=/$module_name/&returndesc=".urlize($text{'index_return'})),"<p>\n"; } my $err = $@; $err =~ s/\s+at.*line\s+\d+[\000-\377]*$//; print text('ssl_emessage', "<tt>$err</tt>"),"<p>\n"; ui_print_footer("", $text{'index_return'}); exit; } # Show tabs my @tabs = map { [ $_, $text{'ssl_tab'.$_}, "edit_ssl.cgi?mode=$_" ] } ( "ssl", "current", "ips", "create", "csr", "upload", "lets" ); print ui_tabs_start(\@tabs, "mode", $in{'mode'} || $tabs[0]->[0], 1); # Basic SSL settings print ui_tabs_start_tab("mode", "ssl"); print $text{'ssl_desc1'},"<p>\n"; print $text{'ssl_desc2'},"<p>\n"; print ui_form_start("change_ssl.cgi", "post"); print ui_table_start($text{'ssl_header'}, undef, 2); print ui_table_row($text{'ssl_on'}, ui_yesno_radio("ssl", $miniserv{'ssl'})); print ui_table_row($text{'ssl_hsts'}, ui_yesno_radio("ssl_hsts", $miniserv{'ssl_hsts'})); print ui_table_row($text{'ssl_key'}, ui_textbox("key", $miniserv{'keyfile'}, 40)." ". file_chooser_button("key")); print ui_table_row($text{'ssl_cert'}, ui_opt_textbox("cert", $miniserv{'certfile'}, 40, $text{'ssl_cert_def'}."<br>",$text{'ssl_cert_oth'})." ". file_chooser_button("cert")); print ui_table_row($text{'ssl_version'}, ui_opt_textbox("version", $miniserv{'ssl_version'}, 4, $text{'ssl_auto'})); print ui_table_row($text{'ssl_deny'}, ui_checkbox("no_ssl2", 1, "SSLv2", $miniserv{'no_ssl2'})."\n". ui_checkbox("no_ssl3", 1, "SSLv3", $miniserv{'no_ssl3'})."\n". ui_checkbox("no_tls1", 1, "TLSv1.0", $miniserv{'no_tls1'})."\n". ui_checkbox("no_tls1_1", 1, "TLSv1.1", $miniserv{'no_tls1_1'})."\n". ui_checkbox("no_tls1_2", 1, "TLSv1.2", $miniserv{'no_tls1_2'})."\n" ); print ui_table_row($text{'ssl_compression'}, ui_yesno_radio("ssl_compression", !$miniserv{'no_sslcompression'})); print ui_table_row($text{'ssl_honorcipherorder'}, ui_yesno_radio("ssl_honorcipherorder", $miniserv{'ssl_honorcipherorder'})); my $clist = $miniserv{'ssl_cipher_list'}; my $clist_def = $miniserv{'cipher_list_def'}; my $cmode = !$clist ? 1 : ($clist_def && $clist eq $strong_ssl_ciphers) ? 2 : ($clist_def && $clist eq $pfs_ssl_ciphers) ? 3 : 0; print ui_table_row($text{'ssl_cipher_list'}, ui_radio("cipher_list_def", $cmode, [ [ 1, $text{'ssl_auto'}."<br>" ], [ 2, $text{'ssl_strong'}."<br>" ], [ 3, $text{'ssl_pfs'}."<br>" ], [ 0, $text{'ssl_clist'}." ". ui_textbox("cipher_list", $cmode == 0 ? $clist : "", 50) ] ])); my $extracas; if (defined $miniserv{'extracas'}) { $extracas = $miniserv{'extracas'}; } else { $extracas = ""; } print ui_table_row($text{'ssl_extracas'}, ui_textarea("extracas", join("\n",split(/\s+/, $extracas)), 3, 60)." ". "<br>".file_chooser_button("extracas", 0, undef, undef, 1)); print ui_table_end(); print ui_form_end([ [ "", $text{'save'} ] ]); print ui_tabs_end_tab(); # Page showing current cert print ui_tabs_start_tab("mode", "current"); print "$text{'ssl_current'}<p>\n"; print ui_table_start($text{'ssl_cheader'}, undef, 4); $info = &cert_info($miniserv{'certfile'} || $miniserv{'keyfile'}); foreach my $i ('cn', 'alt', 'o', 'email', 'issuer_cn', 'issuer_o', 'issuer_email', 'notafter', 'type') { if ($info->{$i}) { print ui_table_row($text{'ca_'.$i}, ref($info->{$i}) ? join(", ", @{$info->{$i}}) : $info->{$i}); } } my @clinks = ( ui_link("download_cert.cgi/cert.pem", $text{'ssl_pem'}), ui_link("download_cert.cgi/cert.p12", $text{'ssl_pkcs12'}) ); print ui_table_row($text{'ssl_download'}, &ui_links_row(\@clinks)); print ui_table_end(); print ui_tabs_end_tab(); # Table listing per-IP / domain SSL certs print ui_tabs_start_tab("mode", "ips"); print "$text{'ssl_ipkeys'}<p>\n"; my @ipkeys = get_ipkeys(\%miniserv); if (@ipkeys) { print ui_columns_start([ $text{'ssl_ips'}, $text{'ssl_key'}, $text{'ssl_cert'} ]); foreach my $k (@ipkeys) { print ui_columns_row([ ui_link("edit_ipkey.cgi?idx=".$k->{'index'}, join(", ", @{$k->{'ips'}}) ), "<tt>$k->{'key'}</tt>", $k->{'cert'} ? "<tt>$k->{'cert'}</tt>" : $text{'ssl_cert_def'}, ]); } print ui_columns_end(); } else { print "<b>$text{'ssl_ipkeynone'}</b><p>\n"; } print ui_link("edit_ipkey.cgi?new=1", $text{'ssl_addipkey'}); print "<p>\n"; print ui_tabs_end_tab(); # SSL key generation form print ui_tabs_start_tab("mode", "create"); print "$text{'ssl_newkey'}<p>\n"; my $curkey = read_file_contents($miniserv{'keyfile'}); my $origkey = read_file_contents("$root_directory/miniserv.pem"); if ($curkey eq $origkey) { # System is using the original (insecure) Webmin key! print "<b>$text{'ssl_hole'}</b><p>\n"; } print ui_form_start("newkey.cgi"); print ui_table_start($text{'ssl_header1'}, undef, 2); my $host = $ENV{'HTTP_HOST'}; $host =~ s/:.*//; print show_ssl_key_form($host, undef, "Webmin Webserver on ".get_system_hostname()); print ui_table_row($text{'ssl_newfile'}, ui_textbox("newfile", "$config_directory/miniserv.pem", 40)); print ui_table_row($text{'ssl_usenew'}, ui_yesno_radio("usenew", 1)); print ui_table_end(); print ui_form_end([ [ "", $text{'ssl_create'} ] ]); print ui_tabs_end_tab(); # SSL CSR generation form my $keydata = read_file_contents("$config_directory/miniserv.newkey"); my $csrdata = read_file_contents("$config_directory/miniserv.csr"); print ui_tabs_start_tab("mode", "csr"); print "$text{'ssl_newcsr'}<p>\n"; print ui_form_start("newcsr.cgi"); print ui_table_start($text{'ssl_header2'}, undef, 2); print show_ssl_key_form($host, undef, "Webmin Webserver on ".get_system_hostname()); print ui_table_row($text{'ssl_newfile'}, ui_textbox("newfile", "$config_directory/miniserv.newkey", 40)); print ui_table_row($text{'ssl_csrfile'}, ui_textbox("csrfile", "$config_directory/miniserv.csr", 40)); print ui_table_end(); print ui_form_end([ [ "", $text{'ssl_create'} ] ]); if ($keydata) { # Show most recent CSR and key print "<p>\n"; print ui_hidden_start($text{'ssl_csralready'}, "already", 0); print $text{'ssl_already1'},"<p>\n"; print "<pre>".html_escape($keydata)."</pre>\n"; print $text{'ssl_already2'},"<p>\n"; print "<pre>".html_escape($csrdata)."</pre>\n"; print ui_hidden_end("already"); } print ui_tabs_end_tab(); # SSL key upload form print ui_tabs_start_tab("mode", "upload"); print "$text{'ssl_savekey'}<p>\n"; print ui_form_start("savekey.cgi", "form-data"); print ui_table_start($text{'ssl_saveheader'}, undef, 2); print ui_table_row($text{'ssl_privkey'}, ui_textarea("key", $keydata, 7, 70)."<br>\n". "<b>$text{'ssl_upload'}</b>\n". ui_upload("keyfile"). ($keydata ? "<br>".$text{'ssl_fromcsr'} : "")); print ui_table_row($text{'ssl_privcert'}, ui_radio("cert_def", 1, [ [ 1, $text{'ssl_same'} ], [ 0, $text{'ssl_below'} ] ])."<br>\n". ui_textarea("cert", undef, 7, 70)."<br>\n". "<b>$text{'ssl_upload'}</b>\n". ui_upload("certfile")); print ui_table_row($text{'ssl_privchain'}, ui_radio("chain_def", 1, [ [ 1, $miniserv{'extracas'} ? $text{'ssl_leavechain'} : $text{'ssl_nochain'} ], [ 0, $text{'ssl_below'} ] ])."<br>\n". ui_textarea("chain", undef, 7, 70)."<br>\n". "<b>$text{'ssl_upload'}</b>\n". ui_upload("chainfile")); print ui_table_end(); print ui_form_end([ [ "save", $text{'save'} ] ]); print ui_tabs_end_tab(); # Let's Encrypt form print ui_tabs_start_tab("mode", "lets"); print "$text{'ssl_letsdesc'}<p>\n"; my $err = &check_letsencrypt(); if ($err) { print "<b>",&text('ssl_letserr', $err),"</b><p>\n"; print &get_letsencrypt_install_message( "/$module_name/edit_ssl.cgi?mode=lets", $text{'ssl_title'}); print "<p>\n"; print &text('ssl_letserr2', "../config.cgi?$module_name"),"<p>\n"; } else { # Show form to create a cert print "$text{'ssl_letsdesc2'}<p>\n"; print &ui_form_start("letsencrypt.cgi"); print &ui_table_start($text{'ssl_letsheader'}, undef, 2); # For domain names my @doms = $config{'letsencrypt_doms'} ? split(/\s+/, $config{'letsencrypt_doms'}) : ( $host ); print &ui_table_row($text{'ssl_letsdoms'}, &ui_textarea("dom", join("\n", @doms), 5, 40)); # Apache vhost or other path my @opts; my $webroot = $config{'letsencrypt_webroot'}; my $mode = $webroot eq 'dns' ? 3 : $webroot ? 2 : 0; if (&foreign_installed("apache")) { &foreign_require("apache"); my $conf = &apache::get_config(); my @snames; foreach my $virt (&apache::find_directive_struct( "VirtualHost", $conf)) { my $sn = &apache::find_directive( "ServerName", $virt->{'members'}); push(@snames, [ $sn, $sn || "<".$text{'default'}.">" ]); } my %done; @snames = grep { !$done{$_->[0]}++ } @snames; if (@snames) { @snames = sort { $a->[0] cmp $b->[0] } @snames; push(@opts, [ 0, $text{'ssl_webroot0'} ]); push(@opts, [ 1, $text{'ssl_webroot1'}, &ui_select("vhost", undef, \@snames) ]); } else { $webroot ||= &apache::find_directive("DocumentRoot", $conf); } } push(@opts, [ 2, $text{'ssl_webroot2'}, &ui_textbox("webroot", $webroot, 40) ]); if ($letsencrypt_cmd) { push(@opts, [ 3, $text{'ssl_webroot3'} ]); } print &ui_table_row($text{'ssl_webroot'}, &ui_radio_table("webroot_mode", $mode, \@opts)); # Install in Webmin now? print &ui_table_row($text{'ssl_usewebmin'}, &ui_yesno_radio("use", 1)); # SSL key size print &ui_table_row($text{'ssl_size'}, &ui_opt_textbox("size", undef, 6, $text{'default'}). " ".$text{'ssl_bits'}); # Staging mode print &ui_table_row($text{'ssl_staging'}, &ui_radio("staging", 0, [ [ 0, $text{'ssl_staging0'} ], [ 1, $text{'ssl_staging1'} ] ])); # Renewal option my $job = &find_letsencrypt_cron_job(); my $renew = $job && $job->{'months'} =~ /^\*\/(\d+)$/ ? $1 : undef; print &ui_table_row($text{'ssl_letsrenew'}, &ui_opt_textbox("renew", $renew, 4, $text{'ssl_letsnotrenew'})); print &ui_table_end(); print &ui_form_end([ [ undef, $text{'ssl_letsok'} ], [ 'save', $text{'ssl_letsonly'} ] ]); } print ui_tabs_end_tab(); print ui_tabs_end(1); ui_print_footer("", $text{'index_return'});
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
help | Folder | 0755 |
|
|
images | Folder | 0755 |
|
|
lang | Folder | 0755 |
|
|
subdir | Folder | 0755 |
|
|
CHANGELOG | File | 12.02 KB | 0644 |
|
acme_tiny.py | File | 11.24 KB | 0755 |
|
adminupgrade | File | 299 B | 0644 |
|
backup_config.pl | File | 1.97 KB | 0755 |
|
bootup.cgi | File | 1.04 KB | 0755 |
|
cache.cgi | File | 1.47 KB | 0755 |
|
cgi_args.pl | File | 159 B | 0755 |
|
change_access.cgi | File | 1.34 KB | 0755 |
|
change_advanced.cgi | File | 3 KB | 0755 |
|
change_anon.cgi | File | 712 B | 0755 |
|
change_bind.cgi | File | 4.8 KB | 0755 |
|
change_ca.cgi | File | 674 B | 0755 |
|
change_debug.cgi | File | 1.38 KB | 0755 |
|
change_lang.cgi | File | 558 B | 0755 |
|
change_lock.cgi | File | 554 B | 0755 |
|
change_log.cgi | File | 2.38 KB | 0755 |
|
change_mobile.cgi | File | 940 B | 0755 |
|
change_os.cgi | File | 1.85 KB | 0755 |
|
change_osdn.cgi | File | 1.54 KB | 0755 |
|
change_overlay.cgi | File | 1.16 KB | 0755 |
|
change_proxy.cgi | File | 1.09 KB | 0755 |
|
change_referers.cgi | File | 633 B | 0755 |
|
change_session.cgi | File | 4.77 KB | 0755 |
|
change_ssl.cgi | File | 3.03 KB | 0755 |
|
change_startpage.cgi | File | 773 B | 0755 |
|
change_status.cgi | File | 1.02 KB | 0755 |
|
change_theme.cgi | File | 1.16 KB | 0755 |
|
change_twofactor.cgi | File | 1.43 KB | 0755 |
|
change_ui.cgi | File | 1.61 KB | 0755 |
|
change_web.cgi | File | 2.47 KB | 0755 |
|
clear_blocked.cgi | File | 154 B | 0755 |
|
clear_cache.cgi | File | 205 B | 0755 |
|
clone_mod.cgi | File | 2.06 KB | 0755 |
|
config | File | 114 B | 0644 |
|
config.info | File | 696 B | 0644 |
|
config.info.ar | File | 414 B | 0644 |
|
config.info.ca | File | 408 B | 0644 |
|
config.info.cs | File | 233 B | 0644 |
|
config.info.de | File | 368 B | 0644 |
|
config.info.es | File | 229 B | 0644 |
|
config.info.fa | File | 301 B | 0644 |
|
config.info.fr | File | 577 B | 0644 |
|
config.info.hr | File | 0 B | 0644 |
|
config.info.hu | File | 0 B | 0644 |
|
config.info.it | File | 245 B | 0644 |
|
config.info.ja | File | 531 B | 0644 |
|
config.info.ko | File | 206 B | 0644 |
|
config.info.ms | File | 286 B | 0644 |
|
config.info.nl | File | 299 B | 0644 |
|
config.info.no | File | 283 B | 0644 |
|
config.info.pl | File | 284 B | 0644 |
|
config.info.pt_BR | File | 299 B | 0644 |
|
config.info.ru | File | 491 B | 0644 |
|
config.info.sk | File | 132 B | 0644 |
|
config.info.sv | File | 202 B | 0644 |
|
config.info.tr | File | 155 B | 0644 |
|
cpan_modules.pl | File | 229 B | 0755 |
|
defaultacl | File | 17 B | 0644 |
|
delete_cache.cgi | File | 471 B | 0755 |
|
delete_mod.cgi | File | 2.24 KB | 0755 |
|
delete_webmincron.cgi | File | 1.51 KB | 0755 |
|
download_cert.cgi | File | 532 B | 0755 |
|
edit_access.cgi | File | 1.38 KB | 0755 |
|
edit_advanced.cgi | File | 3.87 KB | 0755 |
|
edit_anon.cgi | File | 812 B | 0755 |
|
edit_assignment.cgi | File | 1.12 KB | 0755 |
|
edit_bind.cgi | File | 2.95 KB | 0755 |
|
edit_blocked.cgi | File | 944 B | 0755 |
|
edit_ca.cgi | File | 2.82 KB | 0755 |
|
edit_categories.cgi | File | 1.69 KB | 0755 |
|
edit_debug.cgi | File | 2.04 KB | 0755 |
|
edit_descs.cgi | File | 1.49 KB | 0755 |
|
edit_ipkey.cgi | File | 1.7 KB | 0755 |
|
edit_lang.cgi | File | 1.82 KB | 0755 |
|
edit_lock.cgi | File | 763 B | 0755 |
|
edit_log.cgi | File | 3.04 KB | 0755 |
|
edit_mobile.cgi | File | 1.26 KB | 0755 |
|
edit_mods.cgi | File | 4.45 KB | 0755 |
|
edit_os.cgi | File | 2.72 KB | 0755 |
|
edit_proxy.cgi | File | 3.7 KB | 0755 |
|
edit_referers.cgi | File | 899 B | 0755 |
|
edit_sendmail.cgi | File | 3.48 KB | 0755 |
|
edit_session.cgi | File | 5.18 KB | 0755 |
|
edit_ssl.cgi | File | 10.55 KB | 0755 |
|
edit_startpage.cgi | File | 1.68 KB | 0755 |
|
edit_status.cgi | File | 1.13 KB | 0755 |
|
edit_themes.cgi | File | 3.72 KB | 0755 |
|
edit_twofactor.cgi | File | 1.5 KB | 0755 |
|
edit_ui.cgi | File | 2.51 KB | 0755 |
|
edit_upgrade.cgi | File | 4.26 KB | 0755 |
|
edit_web.cgi | File | 2.88 KB | 0755 |
|
edit_webmincron.cgi | File | 1.35 KB | 0755 |
|
export_mod.cgi | File | 1.23 KB | 0755 |
|
feedback_files.pl | File | 126 B | 0755 |
|
fix_os.cgi | File | 228 B | 0755 |
|
gnupg-lib.pl | File | 13.38 KB | 0755 |
|
hide.cgi | File | 326 B | 0755 |
|
index.cgi | File | 4.16 KB | 0755 |
|
install_mod.cgi | File | 3.11 KB | 0755 |
|
install_theme.cgi | File | 2.29 KB | 0755 |
|
jcameron-key.asc | File | 1.29 KB | 0644 |
|
letsencrypt-cleanup.pl | File | 2.02 KB | 0755 |
|
letsencrypt-dns.pl | File | 2.57 KB | 0755 |
|
letsencrypt-lib.pl | File | 14.03 KB | 0755 |
|
letsencrypt.cgi | File | 4.64 KB | 0755 |
|
log_parser.pl | File | 1.23 KB | 0755 |
|
module.info | File | 195 B | 0644 |
|
module.info.af | File | 0 B | 0644 |
|
module.info.af.auto | File | 142 B | 0644 |
|
module.info.ar | File | 185 B | 0644 |
|
module.info.ar.auto | File | 22 B | 0644 |
|
module.info.be | File | 0 B | 0644 |
|
module.info.be.auto | File | 208 B | 0644 |
|
module.info.bg | File | 0 B | 0644 |
|
module.info.bg.auto | File | 218 B | 0644 |
|
module.info.ca | File | 134 B | 0644 |
|
module.info.ca.auto | File | 15 B | 0644 |
|
module.info.cs | File | 28 B | 0644 |
|
module.info.cs.auto | File | 128 B | 0644 |
|
module.info.da | File | 0 B | 0644 |
|
module.info.da.auto | File | 142 B | 0644 |
|
module.info.de | File | 126 B | 0644 |
|
module.info.de.auto | File | 15 B | 0644 |
|
module.info.el | File | 0 B | 0644 |
|
module.info.el.auto | File | 262 B | 0644 |
|
module.info.es | File | 33 B | 0644 |
|
module.info.es.auto | File | 109 B | 0644 |
|
module.info.eu | File | 0 B | 0644 |
|
module.info.eu.auto | File | 158 B | 0644 |
|
module.info.fa | File | 0 B | 0644 |
|
module.info.fa.auto | File | 202 B | 0644 |
|
module.info.fi | File | 0 B | 0644 |
|
module.info.fi.auto | File | 141 B | 0644 |
|
module.info.fr | File | 32 B | 0644 |
|
module.info.fr.auto | File | 129 B | 0644 |
|
module.info.he | File | 0 B | 0644 |
|
module.info.he.auto | File | 195 B | 0644 |
|
module.info.hr | File | 0 B | 0644 |
|
module.info.hr.auto | File | 149 B | 0644 |
|
module.info.hu | File | 30 B | 0644 |
|
module.info.hu.auto | File | 148 B | 0644 |
|
module.info.it | File | 33 B | 0644 |
|
module.info.it.auto | File | 107 B | 0644 |
|
module.info.ja | File | 180 B | 0644 |
|
module.info.ko | File | 22 B | 0644 |
|
module.info.ko.auto | File | 129 B | 0644 |
|
module.info.lt | File | 0 B | 0644 |
|
module.info.lt.auto | File | 180 B | 0644 |
|
module.info.lv | File | 0 B | 0644 |
|
module.info.lv.auto | File | 157 B | 0644 |
|
module.info.ms | File | 119 B | 0644 |
|
module.info.ms.auto | File | 15 B | 0644 |
|
module.info.mt | File | 0 B | 0644 |
|
module.info.mt.auto | File | 144 B | 0644 |
|
module.info.nl | File | 28 B | 0644 |
|
module.info.nl.auto | File | 117 B | 0644 |
|
module.info.no | File | 29 B | 0644 |
|
module.info.no.auto | File | 117 B | 0644 |
|
module.info.pl | File | 155 B | 0644 |
|
module.info.pl.auto | File | 15 B | 0644 |
|
module.info.pt | File | 33 B | 0644 |
|
module.info.pt.auto | File | 113 B | 0644 |
|
module.info.pt_BR | File | 36 B | 0644 |
|
module.info.pt_BR.auto | File | 119 B | 0644 |
|
module.info.ro | File | 0 B | 0644 |
|
module.info.ro.auto | File | 147 B | 0644 |
|
module.info.ru | File | 34 B | 0644 |
|
module.info.ru.auto | File | 172 B | 0644 |
|
module.info.sk | File | 30 B | 0644 |
|
module.info.sk.auto | File | 132 B | 0644 |
|
module.info.sl | File | 0 B | 0644 |
|
module.info.sl.auto | File | 147 B | 0644 |
|
module.info.sv | File | 30 B | 0644 |
|
module.info.sv.auto | File | 114 B | 0644 |
|
module.info.th | File | 0 B | 0644 |
|
module.info.th.auto | File | 258 B | 0644 |
|
module.info.tr | File | 33 B | 0644 |
|
module.info.tr.auto | File | 128 B | 0644 |
|
module.info.uk | File | 0 B | 0644 |
|
module.info.uk.auto | File | 215 B | 0644 |
|
module.info.ur | File | 0 B | 0644 |
|
module.info.ur.auto | File | 209 B | 0644 |
|
module.info.vi | File | 0 B | 0644 |
|
module.info.vi.auto | File | 177 B | 0644 |
|
module.info.zh | File | 22 B | 0644 |
|
module.info.zh_TW | File | 25 B | 0644 |
|
module.info.zh_TW.auto | File | 115 B | 0644 |
|
newcsr.cgi | File | 800 B | 0755 |
|
newkey.cgi | File | 879 B | 0755 |
|
postinstall.pl | File | 2.01 KB | 0755 |
|
refresh_modules.cgi | File | 664 B | 0755 |
|
restart.cgi | File | 87 B | 0755 |
|
save_assignment.cgi | File | 485 B | 0755 |
|
save_categories.cgi | File | 946 B | 0755 |
|
save_descs.cgi | File | 1006 B | 0755 |
|
save_ipkey.cgi | File | 1.31 KB | 0755 |
|
save_newmod.cgi | File | 278 B | 0755 |
|
save_sendmail.cgi | File | 2.08 KB | 0755 |
|
save_webmincron.cgi | File | 1016 B | 0755 |
|
savekey.cgi | File | 2.8 KB | 0755 |
|
setup_ca.cgi | File | 1.52 KB | 0755 |
|
standard_chooser.cgi | File | 1.68 KB | 0755 |
|
stop_ca.cgi | File | 1.03 KB | 0755 |
|
syslog_logs.pl | File | 633 B | 0755 |
|
system_info.pl | File | 5.02 KB | 0644 |
|
test_sendmail.cgi | File | 784 B | 0755 |
|
third_chooser.cgi | File | 1.55 KB | 0755 |
|
twofactor-funcs-lib.pl | File | 8.81 KB | 0644 |
|
uninstall.pl | File | 236 B | 0755 |
|
update.cgi | File | 2.86 KB | 0755 |
|
upgrade.cgi | File | 16.6 KB | 0755 |
|
view_webmincron.cgi | File | 1.66 KB | 0755 |
|
webmin-lib.pl | File | 68.77 KB | 0755 |
|