%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 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 : /usr/share/webmin/acl/ |
Upload File : |
#!/usr/bin/perl # cert_issue.cgi use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; require './acl-lib.pl'; our (%in, %text, %config, %access, $module_config_directory, $base_remote_user); &ReadParse(); &error_setup($text{'cert_err'}); $in{'key'} || &error($text{'cert_ekey'}); my %miniserv; &get_miniserv_config(\%miniserv); # Create the new key my $temp1 = &transname(); my $temp2 = &tempname(); my $fh = "IN"; &open_tempfile($fh, ">$temp1"); foreach my $k ("emailAddress", "organizationalUnitName", "organizationName", "stateOrProvinceName", "countryName", "commonName") { &print_tempfile($fh, "$k = $in{$k}\n"); } $in{'key'} =~ s/\s//g; &print_tempfile($fh, "SPKAC = $in{'key'}\n"); &close_tempfile($fh); my $cmd = &get_ssleay(); my $ssleay = &backquote_logged("$cmd ca -spkac $temp1 -out $temp2 -config $module_config_directory/openssl.cnf -days 1095 2>&1"); &unlink_file($temp1); if ($?) { &error("<pre>$ssleay</pre>"); } else { # Display status and redirect to actual cert file &ui_print_unbuffered_header(undef, $text{'cert_title'}, ""); print &text('cert_done', $in{'commonName'}),"<p>\n"; print &text('cert_pickup', "cert_output.cgi?file=$temp2"),"<p>\n"; &ui_print_footer("", $text{'index_return'}); # Update the Webmin user my ($me) = grep { $_->{'name'} eq $base_remote_user } &list_users(); $me || &error($text{'edit_egone'}); $me->{'cert'} = "/C=$in{'countryName'}". "/ST=$in{'stateOrProvinceName'}". "/O=$in{'organizationName'}". "/OU=$in{'organizationalUnitName'}". "/CN=$in{'commonName'}". "/Email=$in{'emailAddress'}"; &modify_user($me->{'name'}, $me); sleep(1); &restart_miniserv(); &webmin_log("cert", undef, $base_remote_user, \%in); }