Server IP : 195.201.23.43 / Your IP : 3.141.40.192 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/usermin/cron/ |
Upload File : |
#!/usr/bin/perl # exec_cron.cgi # Execute an existing cron job, and display the output require './cron-lib.pl'; &ReadParse(); @jobs = &list_cron_jobs(); $job = $jobs[$in{'idx'}]; &can_edit_user(\%access, $job->{'user'}) || &error($text{'exec_ecannot'}); &foreign_require("proc", "proc-lib.pl"); # split command into command and input &convert_range($job); &convert_comment($job); $job->{'command'} =~ s/\\%/\0/g; @lines = split(/%/ , $job->{'command'}); foreach (@lines) { s/\0/%/g; } for($i=1; $i<@lines; $i++) { $input .= $lines[$i]."\n"; } if ($in{'bg'}) { &ui_print_header(undef, $text{'exec_title'}, ""); } else { &ui_print_unbuffered_header(undef, $text{'exec_title'}, ""); } &additional_log('exec', undef, $lines[0]); &webmin_log("exec", "cron", $job->{'user'}, $job); # Remove variables that wouldn't be in the 'real' cron &clean_environment(); # Set cron environment variables $ENV{'PATH'} = "/usr/bin:/bin"; foreach $e (&read_envs($job->{'user'})) { $ENV{$1} = $2 if ($e =~ /^(\S+)\s+(.*)$/); } if (&supports_users()) { # Get command and switch uid/gid @uinfo = getpwnam($job->{'user'}); $ENV{"HOME"} = $uinfo[7]; $ENV{"SHELL"} = "/bin/sh"; $ENV{"LOGNAME"} = $ENV{"USER"} = $job->{'user'}; &switch_to_unix_user(\@uinfo); } if ($in{'bg'}) { # Run in background print &text('exec_cmdbg', "<tt>".&html_escape($lines[0])."</tt>"),"<p>\n"; if (defined($input)) { local $temp = &tempname(); &open_tempfile(TEMP, ">$temp"); &print_tempfile(TEMP, $input); &close_tempfile(TEMP); &execute_command("(($lines[0]) ; rm -f $temp) &", $temp, undef, undef); } else { &execute_command("($lines[0]) &", undef, undef, undef); } } else { # Execute cron command and display output.. print &text('exec_cmd', "<tt>".&html_escape($lines[0])."</tt>"),"<p>\n"; print "<pre>"; $got = &foreign_call("proc", "safe_process_exec", $lines[0], 0, 0, STDOUT, $input, 1); print "<i>$text{'exec_none'}</i>\n" if (!$got); print "</pre>\n"; } &ui_print_footer("edit_cron.cgi?idx=$in{'idx'}", $text{'edit_return'}, "", $text{'index_return'});Private