%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.108 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/lpadmin/ |
Upload File : |
#!/usr/bin/perl
# test_print.cgi
# Print one of the test pages
require './lpadmin-lib.pl';
&foreign_require("proc", "proc-lib.pl");
&ReadParseMime();
$access{'test'} || &error($text{'test_ecannot'});
&ui_print_header(&text('jobs_on', "<tt>$in{'name'}</tt>"),
$text{'test_title'}, "");
if ($in{'mode'} == 0) {
$file = "bw.ps";
}
elsif ($in{'mode'} == 1) {
$file = "colour.ps";
}
elsif ($in{'mode'} == 2) {
$file = "ascii.txt";
}
else {
$file = &transname();
&open_tempfile(FILE, ">$file", 0, 1);
&print_tempfile(FILE, $in{'file'});
&close_tempfile(FILE);
}
$cmd = &print_command($in{'name'}, $file);
if ($access{'user'} eq '*') {
# Run as root
}
elsif ($access{'user'}) {
$cmd = &command_as_user($access{'user'}, 0, $cmd);
}
else {
$cmd = &command_as_user($remote_user, 0, $cmd);
}
print &text('test_exec', "<tt>$cmd</tt>"),"<br>\n";
print "<pre>";
&open_execute_command(CMD, $cmd, 1);
while(<CMD>) {
print;
}
close(CMD);
print "</pre>\n";
if ($?) { print "<b>$text{'test_failed'}</b> <p>\n"; }
else { print "$text{'test_ok'} <p>\n"; }
unlink($file) if ($in{'mode'} == 3);
&ui_print_footer("list_jobs.cgi?name=".&urlize($in{'name'}),
$text{'jobs_return'},
"", $text{'index_return'});