%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 : /proc/thread-self/root/usr/share/webmin/acl/ |
Upload File : |
#!/usr/bin/perl # cert_form.cgi use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; require './acl-lib.pl'; our (%in, %text, %config, %access); &ui_print_header(undef, $text{'cert_title'}, "", undef, undef, undef, undef, undef, undef, "language=VBSCRIPT onload='postLoad()'"); eval "use Net::SSLeay"; print "<p>$text{'cert_msg'}<p>\n"; if ($ENV{'SSL_USER'}) { print &text('cert_already', "<tt>$ENV{'SSL_USER'}</tt>"), "<p>\n"; } if ($ENV{'HTTP_USER_AGENT'} =~ /Mozilla/i) { # Output a form that works for netscape and mozilla print &ui_form_start("cert_issue.cgi", "post"); print &ui_table_start($text{'cert_header'}, undef, 2); print &ui_table_row($text{'cert_cn'}, &ui_textbox("commonName", undef, 30)); print &ui_table_row($text{'cert_email'}, &ui_textbox("emailAddress", undef, 30)); print &ui_table_row($text{'cert_ou'}, &ui_textbox("organizationalUnitName", undef, 30)); print &ui_table_row($text{'cert_o'}, &ui_textbox("organizationName", undef, 30)); print &ui_table_row($text{'cert_sp'}, &ui_textbox("stateOrProvinceName", undef, 30)); print &ui_table_row($text{'cert_c'}, &ui_textbox("countryName", undef, 30)); print &ui_table_row($text{'cert_key'}, "<keygen name=key>"); print &ui_table_end(); print &ui_form_end([ [ undef, $text{'cert_issue'} ] ]); } else { # Unsupported browser! print "<p><b>",&text('cert_ebrowser', "<tt>$ENV{'HTTP_USER_AGENT'}</tt>"),"</b><p>\n"; } &ui_print_footer("", $text{'index_return'});